Uses of Class
javafx.scene.input.DataFormat
Packages that use DataFormat
Package
Description
Provides the set of classes for mouse and keyboard input event handling.
-
Uses of DataFormat in javafx.scene.input
Fields in javafx.scene.input declared as DataFormatModifier and TypeFieldDescriptionstatic DataFormatDataFormat.FILESRepresents a List of Files.static DataFormatDataFormat.HTMLRepresents an HTML formatted string.static DataFormatDataFormat.IMAGEA special platform specific image type, such as is commonly used on the clipboard and interoperates widely with other applications.static DataFormatDataFormat.PLAIN_TEXTRepresents a plain text string.static DataFormatDataFormat.RTFRepresents an RTF formatted stringstatic DataFormatDataFormat.URLRepresents a URL, encoded as a StringMethods in javafx.scene.input that return DataFormatModifier and TypeMethodDescriptionstatic DataFormatDataFormat.lookupMimeType(String mimeType)Looks for the DataFormat which has been previously created with the given mime type as one of its ids.Methods in javafx.scene.input that return types with arguments of type DataFormatModifier and TypeMethodDescriptionClipboard.getContentTypes()Gets the set of DataFormat types on this Clipboard instance which have associated data registered on the clipboard.Methods in javafx.scene.input with parameters of type DataFormatModifier and TypeMethodDescriptionClipboard.getContent(DataFormat dataFormat)Returns the content stored in this clipboard of the given type, or null if there is no content with this type.booleanClipboard.hasContent(DataFormat dataFormat)Tests whether there is any content on this clipboard of the given DataFormat type.Method parameters in javafx.scene.input with type arguments of type DataFormatModifier and TypeMethodDescriptionbooleanClipboard.setContent(Map<DataFormat,Object> content)Puts content onto the clipboard.