Example usage for java.awt.datatransfer DataFlavor isRepresentationClassSerializable

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

Introduction

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

Prototype

public boolean isRepresentationClassSerializable() 

Source Link

Document

Returns true if the representation class can be serialized.

Usage

From source file:Main.java

public static void main(String[] args) {

    DataFlavor df = DataFlavor.stringFlavor;

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