Example usage for java.awt.datatransfer DataFlavor isRepresentationClassByteBuffer

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

Introduction

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

Prototype

public boolean isRepresentationClassByteBuffer() 

Source Link

Document

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

Usage

From source file:Main.java

public static void main(String[] args) {

    DataFlavor df = DataFlavor.stringFlavor;

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