Class SystemFlavorMap
- java.lang.Object
-
- java.awt.datatransfer.SystemFlavorMap
- All Implemented Interfaces:
-
FlavorMap,FlavorTable
public final class SystemFlavorMap extends Object implements FlavorMap, FlavorTable
The SystemFlavorMap is a configurable map between "natives" (Strings), which correspond to platform-specific data formats, and "flavors" (DataFlavors), which correspond to platform-independent MIME types. This mapping is used by the data transfer subsystem to transfer data between Java and native applications, and between Java applications in separate VMs.
- Since:
- 1.2
Method Summary
| Modifier and Type | Method | Description |
|---|---|---|
void | addFlavorForUnencodedNative(String nat,
DataFlavor flav) | Adds a mapping from a single |
void | addUnencodedNativeForFlavor(DataFlavor flav,
String nat) | Adds a mapping from the specified |
static DataFlavor | decodeDataFlavor(String nat) | Decodes a |
static String | decodeJavaMIMEType(String nat) | Decodes a |
static String | encodeDataFlavor(DataFlavor flav) | Encodes a |
static String | encodeJavaMIMEType(String mimeType) | Encodes a MIME type for use as a |
static FlavorMap | getDefaultFlavorMap() | Returns the default FlavorMap for this thread's ClassLoader. |
List<DataFlavor> | getFlavorsForNative(String nat) | Returns a |
Map<String,DataFlavor> | getFlavorsForNatives(String[] natives) | Returns a |
List<String> | getNativesForFlavor(DataFlavor flav) | Returns a |
Map<DataFlavor,String> | getNativesForFlavors(DataFlavor[] flavors) | Returns a |
static boolean | isJavaMIMEType(String str) | Returns whether the specified |
void | setFlavorsForNative(String nat,
DataFlavor[] flavors) | Discards the current mappings for the specified |
void | setNativesForFlavor(DataFlavor flav,
String[] natives) | Discards the current mappings for the specified |
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait Method Detail
getDefaultFlavorMap
public static FlavorMap getDefaultFlavorMap()
Returns the default FlavorMap for this thread's ClassLoader.
- Returns:
- the default FlavorMap for this thread's ClassLoader
getNativesForFlavor
public List<String> getNativesForFlavor(DataFlavor flav)
Returns a List of String natives to which the specified DataFlavor can be translated by the data transfer subsystem. The List will be sorted from best native to worst. That is, the first native will best reflect data in the specified flavor to the underlying native platform.
If the specified DataFlavor is previously unknown to the data transfer subsystem and the data transfer subsystem is unable to translate this DataFlavor to any existing native, then invoking this method will establish a mapping in both directions between the specified DataFlavor and an encoded version of its MIME type as its native.
- Specified by:
-
getNativesForFlavorin interfaceFlavorTable - Parameters:
-
flav- theDataFlavorwhose corresponding natives should be returned. Ifnullis specified, all natives currently known to the data transfer subsystem are returned in a non-deterministic order. - Returns:
- a
java.util.Listofjava.lang.Stringobjects which are platform-specific representations of platform-specific data formats - Since:
- 1.4
- See Also:
encodeDataFlavor(java.awt.datatransfer.DataFlavor)
getFlavorsForNative
public List<DataFlavor> getFlavorsForNative(String nat)
Returns a List of DataFlavors to which the specified String native can be translated by the data transfer subsystem. The List will be sorted from best DataFlavor to worst. That is, the first DataFlavor will best reflect data in the specified native to a Java application.
If the specified native is previously unknown to the data transfer subsystem, and that native has been properly encoded, then invoking this method will establish a mapping in both directions between the specified native and a DataFlavor whose MIME type is a decoded version of the native.
If the specified native is not a properly encoded native and the mappings for this native have not been altered with setFlavorsForNative, then the contents of the List is platform dependent, but null cannot be returned.
- Specified by:
-
getFlavorsForNativein interfaceFlavorTable - Parameters:
-
nat- the native whose correspondingDataFlavors should be returned. Ifnullis specified, allDataFlavors currently known to the data transfer subsystem are returned in a non-deterministic order. - Returns:
- a
java.util.ListofDataFlavorobjects into which platform-specific data in the specified, platform-specific native can be translated - Since:
- 1.4
- See Also:
encodeJavaMIMEType(java.lang.String)
getNativesForFlavors
public Map<DataFlavor,String> getNativesForFlavors(DataFlavor[] flavors)
Returns a Map of the specified DataFlavors to their most preferred String native. Each native value will be the same as the first native in the List returned by getNativesForFlavor for the specified flavor.
If a specified DataFlavor is previously unknown to the data transfer subsystem, then invoking this method will establish a mapping in both directions between the specified DataFlavor and an encoded version of its MIME type as its native.
- Specified by:
-
getNativesForFlavorsin interfaceFlavorMap - Parameters:
-
flavors- an array ofDataFlavors which will be the key set of the returnedMap. Ifnullis specified, a mapping of allDataFlavors known to the data transfer subsystem to their most preferredStringnatives will be returned. - Returns:
- a
java.util.MapofDataFlavors toStringnatives - See Also:
-
getNativesForFlavor(java.awt.datatransfer.DataFlavor),encodeDataFlavor(java.awt.datatransfer.DataFlavor)
getFlavorsForNatives
public Map<String,DataFlavor> getFlavorsForNatives(String[] natives)
Returns a Map of the specified String natives to their most preferred DataFlavor. Each DataFlavor value will be the same as the first DataFlavor in the List returned by getFlavorsForNative for the specified native.
If a specified native is previously unknown to the data transfer subsystem, and that native has been properly encoded, then invoking this method will establish a mapping in both directions between the specified native and a DataFlavor whose MIME type is a decoded version of the native.
- Specified by:
-
getFlavorsForNativesin interfaceFlavorMap - Parameters:
-
natives- an array ofStrings which will be the key set of the returnedMap. Ifnullis specified, a mapping of all supportedStringnatives to their most preferredDataFlavors will be returned. - Returns:
- a
java.util.MapofStringnatives toDataFlavors - See Also:
-
getFlavorsForNative(java.lang.String),encodeJavaMIMEType(java.lang.String)
addUnencodedNativeForFlavor
public void addUnencodedNativeForFlavor(DataFlavor flav,
String nat) Adds a mapping from the specified DataFlavor (and all DataFlavors equal to the specified DataFlavor) to the specified String native. Unlike getNativesForFlavor, the mapping will only be established in one direction, and the native will not be encoded. To establish a two-way mapping, call addFlavorForUnencodedNative as well. The new mapping will be of lower priority than any existing mapping. This method has no effect if a mapping from the specified or equal DataFlavor to the specified String native already exists.
- Parameters:
-
flav- theDataFlavorkey for the mapping -
nat- theStringnative value for the mapping - Throws:
-
NullPointerException- if flav or nat isnull - Since:
- 1.4
- See Also:
addFlavorForUnencodedNative(java.lang.String, java.awt.datatransfer.DataFlavor)
setNativesForFlavor
public void setNativesForFlavor(DataFlavor flav,
String[] natives) Discards the current mappings for the specified DataFlavor and all DataFlavors equal to the specified DataFlavor, and creates new mappings to the specified String natives. Unlike getNativesForFlavor, the mappings will only be established in one direction, and the natives will not be encoded. To establish two-way mappings, call setFlavorsForNative as well. The first native in the array will represent the highest priority mapping. Subsequent natives will represent mappings of decreasing priority.
If the array contains several elements that reference equal String natives, this method will establish new mappings for the first of those elements and ignore the rest of them.
It is recommended that client code not reset mappings established by the data transfer subsystem. This method should only be used for application-level mappings.
- Parameters:
-
flav- theDataFlavorkey for the mappings -
natives- theStringnative values for the mappings - Throws:
-
NullPointerException- if flav or natives isnullor if natives containsnullelements - Since:
- 1.4
- See Also:
setFlavorsForNative(java.lang.String, java.awt.datatransfer.DataFlavor[])
addFlavorForUnencodedNative
public void addFlavorForUnencodedNative(String nat,
DataFlavor flav) Adds a mapping from a single String native to a single DataFlavor. Unlike getFlavorsForNative, the mapping will only be established in one direction, and the native will not be encoded. To establish a two-way mapping, call addUnencodedNativeForFlavor as well. The new mapping will be of lower priority than any existing mapping. This method has no effect if a mapping from the specified String native to the specified or equal DataFlavor already exists.
- Parameters:
-
nat- theStringnative key for the mapping -
flav- theDataFlavorvalue for the mapping - Throws:
-
NullPointerException- ifnatorflavisnull - Since:
- 1.4
- See Also:
addUnencodedNativeForFlavor(java.awt.datatransfer.DataFlavor, java.lang.String)
setFlavorsForNative
public void setFlavorsForNative(String nat,
DataFlavor[] flavors) Discards the current mappings for the specified String native, and creates new mappings to the specified DataFlavors. Unlike getFlavorsForNative, the mappings will only be established in one direction, and the natives need not be encoded. To establish two-way mappings, call setNativesForFlavor as well. The first DataFlavor in the array will represent the highest priority mapping. Subsequent DataFlavors will represent mappings of decreasing priority.
If the array contains several elements that reference equal DataFlavors, this method will establish new mappings for the first of those elements and ignore the rest of them.
It is recommended that client code not reset mappings established by the data transfer subsystem. This method should only be used for application-level mappings.
- Parameters:
-
nat- theStringnative key for the mappings -
flavors- theDataFlavorvalues for the mappings - Throws:
-
NullPointerException- ifnatorflavorsisnullor ifflavorscontainsnullelements - Since:
- 1.4
- See Also:
setNativesForFlavor(java.awt.datatransfer.DataFlavor, java.lang.String[])
encodeJavaMIMEType
public static String encodeJavaMIMEType(String mimeType)
Encodes a MIME type for use as a String native. The format of an encoded representation of a MIME type is implementation-dependent. The only restrictions are:
- The encoded representation is
nullif and only if the MIME typeStringisnull - The encoded representations for two non-
nullMIME typeStrings are equal if and only if theseStrings are equal according toString.equals(Object)
String prefixed with JAVA_DATAFLAVOR:. - Parameters:
-
mimeType- the MIME type to encode - Returns:
- the encoded
String, ornullifmimeTypeisnull
encodeDataFlavor
public static String encodeDataFlavor(DataFlavor flav)
Encodes a DataFlavor for use as a String native. The format of an encoded DataFlavor is implementation-dependent. The only restrictions are:
- The encoded representation is
nullif and only if the specifiedDataFlavorisnullor its MIME typeStringisnull - The encoded representations for two non-
nullDataFlavors with non-nullMIME typeStrings are equal if and only if the MIME typeStrings of theseDataFlavors are equal according toString.equals(Object)
String of the specified DataFlavor prefixed with JAVA_DATAFLAVOR:. - Parameters:
-
flav- theDataFlavorto encode - Returns:
- the encoded
String, ornullifflavisnullor has anullMIME type
isJavaMIMEType
public static boolean isJavaMIMEType(String str)
Returns whether the specified String is an encoded Java MIME type.
- Parameters:
-
str- theStringto test - Returns:
-
trueif theStringis encoded;falseotherwise
decodeJavaMIMEType
public static String decodeJavaMIMEType(String nat)
Decodes a String native for use as a Java MIME type.
- Parameters:
-
nat- theStringto decode - Returns:
- the decoded Java MIME type, or
nullifnatis not an encodedStringnative
decodeDataFlavor
public static DataFlavor decodeDataFlavor(String nat)
throws ClassNotFoundException Decodes a String native for use as a DataFlavor.
- Parameters:
-
nat- theStringto decode - Returns:
- the decoded
DataFlavor, ornullifnatis not an encodedStringnative - Throws:
-
ClassNotFoundException- if the class of the data flavor is not loaded