Example usage for java.awt.datatransfer DataFlavor isRepresentationClassCharBuffer

List of usage examples for java.awt.datatransfer DataFlavor isRepresentationClassCharBuffer

Introduction

In this page you can find the example usage for java.awt.datatransfer DataFlavor isRepresentationClassCharBuffer.

Prototype

public boolean isRepresentationClassCharBuffer() 

Source Link

Document

Returns whether the representation class for this DataFlavor is java.nio.CharBuffer or a subclass thereof.

Usage

From source file:Main.java

public static void main(String[] args) {

    DataFlavor df = DataFlavor.stringFlavor;

    System.out.println(df.isRepresentationClassCharBuffer());
}