(Changed in version 2.8.0) + creates a new map. Use += to add an element to this map and return that map itself.
(Changed in version 2.8.0) + creates a new map. Use += to add an element to this map and return that map itself.
(Changed in version 2.8.0) ++ creates a new map. Use ++= to add an element to this map and return that map itself.
(Changed in version 2.8.0) - creates a new map. Use -= to remove an element from this map and return that map itself.
(Changed in version 2.8.0) - creates a new map. Use -= to remove an element from this map and return that map itself.
(Changed in version 2.8.0) -- creates a new map. Use --= to remove an element from this map and return that map itself.
A JavaFX ClipboardContent to be wrapped.
A JavaFX ClipboardContent to be wrapped. Its default value is a new JavaFX ClipboardContent.
Verifies if a object is equals to this delegate.
Verifies if a object is equals to this delegate.
Object to be compared.
if the other object is equals to this delegate or not.
Gets the List of Files from the clipboard which had previously been registered.
Gets whether an List of Files (DataFormat.FILES) has been registered on this Clipboard.
Gets whether an HTML text String (DataFormat.HTML) has been registered on this Clipboard.
Gets whether an Image (DataFormat.IMAGE) has been registered on this Clipboard.
Gets whether an RTF String (DataFormat.RTF) has been registered on this Clipboard.
Gets whether a plain text String (DataFormat.PLAIN_TEXT) has been registered on this Clipboard.
Gets whether a url String (DataFormat.URL) has been registered on this Clipboard.
The delegate hashcode
Gets the HTML text String from the clipboard which had previously been registered.
Gets the Image from the clipboard which had previously been registered.
(Changed in version 2.8.0) keys returns Iterable[A] rather than Iterator[A].
Puts an List of Files onto the Clipboard.
Puts an List of Files onto the Clipboard, based on the file path.
Puts an HTML text String onto the Clipboard.
Puts an Image onto the Clipboard.
Puts an RTF text String onto the Clipboard.
Puts a plain text String onto the Clipboard.
Puts a URL String onto the Clipboard.
Gets the RTF text String from the clipboard which had previously been registered.
(Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.
Gets the plain text String from the clipboard which had previously been registered.
Returns the original delegate's toString() adding a [SFX] prefix.
(Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.
Gets the URL String from the clipboard which had previously been registered.
(Changed in version 2.8.0) values returns Iterable[B] rather than Iterator[B].
Data container for Clipboard data. It can hold multiple data in several data formats.
Example use:
Alternative use:
Caution when putting files into the clipboard. The recommended way is to use
putFilesmethod:When using with
DataFormat.Filesyou have to use JavaListas a container, which is less convenient:Wraps a JavaFX ClipboardContent.