Example usage for Java javafx.scene.input Clipboard fields, constructors, methods, implement or subclass
The text is from its open source code.
List | getFiles() Gets the List of Files from the clipboard which had previously been registered. |
Image | getImage() Gets the Image from the clipboard which had previously been registered. |
String | getString() Gets the plain text String from the clipboard which had previously been registered. |
Clipboard | getSystemClipboard() Gets the current system clipboard, through which data can be stored and retrieved. |
String | getUrl() Gets the URL String from the clipboard which had previously been registered. |
boolean | hasFiles() Gets whether an List of Files (DataFormat.FILES) has been registered on this Clipboard. |
boolean | hasImage() Gets whether an Image (DataFormat.IMAGE) has been registered on this Clipboard. |
boolean | hasString() Gets whether a plain text String (DataFormat.PLAIN_TEXT) has been registered on this Clipboard. |
boolean | hasUrl() Gets whether a url String (DataFormat.URL) has been registered on this Clipboard. |
boolean | setContent(Map Puts content onto the clipboard. |