Example usage for java.awt.datatransfer DataFlavor javaSerializedObjectMimeType

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

Introduction

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

Prototype

String javaSerializedObjectMimeType

To view the source code for java.awt.datatransfer DataFlavor javaSerializedObjectMimeType.

Click Source Link

Document

A MIME Content-Type of application/x-java-serialized-object represents a graph of Java object(s) that have been made persistent.

Usage

From source file:Main.java

public static void main(String[] args) {

    String df = DataFlavor.javaSerializedObjectMimeType;

    System.out.println(df);
}