On this page
Interface Transferable
- All Known Implementing Classes:
DropTargetContext.TransferableProxy
,StringSelection
public interface Transferable
For information on using data transfer with Swing, see How to Use Drag and Drop and Data Transfer, a section in The Java Tutorial, for more information.
- Since:
- 1.1
Method Summary
Modifier and Type | Method | Description |
---|---|---|
Object |
getTransferData |
Returns an object which represents the data to be transferred.
|
DataFlavor[] |
getTransferDataFlavors() |
Returns an array of DataFlavor objects indicating the flavors the data can be provided in.
|
boolean |
isDataFlavorSupported |
Returns whether or not the specified data flavor is supported for this object.
|
Method Details
getTransferDataFlavors
DataFlavor[] getTransferDataFlavors()
- Returns:
- an array of data flavors in which this data can be transferred
isDataFlavorSupported
boolean isDataFlavorSupported(DataFlavor flavor)
- Parameters:
flavor
- the requested flavor for the data- Returns:
- boolean indicating whether or not the data flavor is supported
getTransferData
Object getTransferData(DataFlavor flavor) throws UnsupportedFlavorException, IOException
- Parameters:
flavor
- the requested flavor for the data- Returns:
- an object which represents the data to be transferred
- Throws:
IOException
- if the data is no longer available in the requested flavorUnsupportedFlavorException
- if the requested data flavor is not supported- See Also:
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.datatransfer/java/awt/datatransfer/Transferable.html