-
- All Known Subinterfaces:
- FlavorTable
- All Known Implementing Classes:
- SystemFlavorMap
public interface FlavorMap
A two-way Map between "natives" (Strings), which correspond to platform- specfic data formats, and "flavors" (DataFlavors), which corerspond to platform-independent MIME types. FlavorMaps need not be symmetric, but typically are.- Since:
- 1.2
-
-
Method Summary
Methods Modifier and Type Method and Description Map<String,DataFlavor>
getFlavorsForNatives(String[] natives)
Returns aMap
of the specifiedString
natives to their correspondingDataFlavor
.Map<DataFlavor,String>
getNativesForFlavors(DataFlavor[] flavors)
Returns aMap
of the specifiedDataFlavor
s to their correspondingString
native.
-
-
-
Method Detail
-
getNativesForFlavors
Map<DataFlavor,String> getNativesForFlavors(DataFlavor[] flavors)
Returns aMap
of the specifiedDataFlavor
s to their correspondingString
native. The returnedMap
is a modifiable copy of thisFlavorMap
's internal data. Client code is free to modify theMap
without affecting this object.- Parameters:
flavors
- an array ofDataFlavor
s which will be the key set of the returnedMap
. Ifnull
is specified, a mapping of allDataFlavor
s currently known to thisFlavorMap
to their correspondingString
natives will be returned.- Returns:
- a
java.util.Map
ofDataFlavor
s toString
natives
-
getFlavorsForNatives
Map<String,DataFlavor> getFlavorsForNatives(String[] natives)
Returns aMap
of the specifiedString
natives to their correspondingDataFlavor
. The returnedMap
is a modifiable copy of thisFlavorMap
's internal data. Client code is free to modify theMap
without affecting this object.- Parameters:
natives
- an array ofString
s which will be the key set of the returnedMap
. Ifnull
is specified, a mapping of allString
natives currently known to thisFlavorMap
to their correspondingDataFlavor
s will be returned.- Returns:
- a
java.util.Map
ofString
natives toDataFlavor
s
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
05/11/2024 14:50:10 Cette version de la page est en cache (à la date du 05/11/2024 14:50:10) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 31/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/awt/datatransfer/flavormap.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.