On this page
Class StringSelection
- All Implemented Interfaces:
ClipboardOwner,Transferable
public class StringSelection extends Object implements Transferable, ClipboardOwner
Transferable which implements the capability required to transfer a String.
This Transferable properly supports DataFlavor.stringFlavor and all equivalent flavors. Support for DataFlavor.plainTextFlavor and all equivalent flavors is deprecated. No other DataFlavors are supported.
- Since:
- 1.1
- See Also:
Constructor Summary
| Constructor | Description |
|---|---|
StringSelection |
Creates a Transferable capable of transferring the specified String.
|
Method Summary
| Modifier and Type | Method | Description |
|---|---|---|
Object |
getTransferData |
Returns the Transferable's data in the requested DataFlavor if possible.
|
DataFlavor[] |
getTransferDataFlavors() |
Returns an array of flavors in which this Transferable can provide the data.
|
boolean |
isDataFlavorSupported |
Returns whether the requested flavor is supported by this Transferable.
|
void |
lostOwnership |
Notifies this object that it is no longer the clipboard owner.
|
Constructor Details
StringSelection
public StringSelection(String data)
Transferable capable of transferring the specified String.
- Parameters:
data- the string to be transferred
Method Details
getTransferDataFlavors
public DataFlavor[] getTransferDataFlavors()
Transferable can provide the data. DataFlavor.stringFlavor is properly supported. Support for DataFlavor.plainTextFlavor is deprecated.
- Specified by:
getTransferDataFlavorsin interfaceTransferable- Returns:
-
an array of length two, whose elements are
DataFlavor.stringFlavorandDataFlavor.plainTextFlavor
isDataFlavorSupported
public boolean isDataFlavorSupported(DataFlavor flavor)
Transferable.
- Specified by:
isDataFlavorSupportedin interfaceTransferable- Parameters:
flavor- the requested flavor for the data- Returns:
trueifflavoris equal toDataFlavor.stringFlavororDataFlavor.plainTextFlavor;falseifflavoris not one of the above flavors- Throws:
NullPointerException- ifflavorisnull
getTransferData
public Object getTransferData(DataFlavor flavor) throws UnsupportedFlavorException, IOException
Transferable's data in the requested DataFlavor if possible. If the desired flavor is DataFlavor.stringFlavor, or an equivalent flavor, the String representing the selection is returned. If the desired flavor is DataFlavor.plainTextFlavor, or an equivalent flavor, a Reader is returned. Note: The behavior of this method for
DataFlavor.plainTextFlavor and equivalent DataFlavors is inconsistent with the definition of DataFlavor.plainTextFlavor.
- Specified by:
getTransferDatain interfaceTransferable- Parameters:
flavor- the requested flavor for the data- Returns:
- the data in the requested flavor, as outlined above
- Throws:
UnsupportedFlavorException- if the requested data flavor is not equivalent to eitherDataFlavor.stringFlavororDataFlavor.plainTextFlavorIOException- if an IOException occurs while retrieving the data. By default, StringSelection never throws this exception, but a subclass may.NullPointerException- ifflavorisnull- See Also:
lostOwnership
public void lostOwnership(Clipboard clipboard, Transferable contents)
ClipboardOwner
- Specified by:
lostOwnershipin interfaceClipboardOwner- Parameters:
clipboard- the clipboard that is no longer ownedcontents- the contents which this owner had placed on theclipboard
© 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/StringSelection.html