Uses of Interface
pivot.collections.Map

Packages that use Map
pivot.charts.content Contains classes representing chart data. 
pivot.collections Defines a set of classes and interfaces that serve as generic collections as well as the data model for UI components. 
pivot.collections.adapter Provides a set of collection implementations that are backed by java.util collections. 
pivot.collections.concurrent Contains a set of thread-safe collection implementations. 
pivot.collections.immutable Contains a set of read-only collection implementations. 
pivot.serialization Contains a set of classes for use in data serialization. 
pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
 

Uses of Map in pivot.charts.content
 

Classes in pivot.charts.content that implement Map
 class CategorySeries
          Represents series data for category chart views.
 

Uses of Map in pivot.collections
 

Classes in pivot.collections that implement Map
 class HashMap<K,V>
          Implementation of the Map interface that is backed by a hashtable.
 

Methods in pivot.collections with parameters of type Map
 void Map.MapListenerList.comparatorChanged(Map<K,V> map, Comparator<K> previousComparator)
           
 void MapListener.comparatorChanged(Map<K,V> map, Comparator<K> previousComparator)
          Called when a map's comparator has changed.
 void MapListener.Adapter.comparatorChanged(Map<K,V> map, Comparator<K> previousComparator)
           
 void Map.MapListenerList.mapCleared(Map<K,V> map)
           
 void MapListener.mapCleared(Map<K,V> map)
          Called when map data has been reset.
 void MapListener.Adapter.mapCleared(Map<K,V> map)
           
 void Map.MapListenerList.valueAdded(Map<K,V> map, K key)
           
 void MapListener.valueAdded(Map<K,V> map, K key)
          Called when a key/value pair has been added to a map.
 void MapListener.Adapter.valueAdded(Map<K,V> map, K key)
           
 void Map.MapListenerList.valueRemoved(Map<K,V> map, K key, V value)
           
 void MapListener.valueRemoved(Map<K,V> map, K key, V value)
          Called when a key/value pair has been removed from a map.
 void MapListener.Adapter.valueRemoved(Map<K,V> map, K key, V value)
           
 void Map.MapListenerList.valueUpdated(Map<K,V> map, K key, V previousValue)
           
 void MapListener.valueUpdated(Map<K,V> map, K key, V previousValue)
          Called when a map value has been updated.
 void MapListener.Adapter.valueUpdated(Map<K,V> map, K key, V previousValue)
           
 

Constructors in pivot.collections with parameters of type Map
HashMap(boolean weak, Map<K,V> map)
           
HashMap(Map<K,V> map)
           
 

Uses of Map in pivot.collections.adapter
 

Classes in pivot.collections.adapter that implement Map
 class MapAdapter<K,V>
          Implementation of the Map interface that is backed by an instance of java.util.Map.
 

Uses of Map in pivot.collections.concurrent
 

Classes in pivot.collections.concurrent that implement Map
 class SynchronizedMap<K,V>
          Synchronized implementation of the Map interface.
 

Constructors in pivot.collections.concurrent with parameters of type Map
SynchronizedMap(Map<K,V> map)
           
 

Uses of Map in pivot.collections.immutable
 

Classes in pivot.collections.immutable that implement Map
 class ImmutableMap<K,V>
          Unmodifiable implementation of the Map interface.
 

Constructors in pivot.collections.immutable with parameters of type Map
ImmutableMap(Map<K,V> map)
           
 

Uses of Map in pivot.serialization
 

Methods in pivot.serialization that return Map
static Map<String,?> JSONSerializer.getMap(Object root, String path)
          Returns the value at the given path as a map.
static Map<String,?> JSONSerializer.parseMap(String json)
          Converts a JSON value to a map.
 Map<?,?> PropertiesSerializer.readObject(InputStream inputStream)
          Reads data from a properties stream.
 

Methods in pivot.serialization with parameters of type Map
 String PropertiesSerializer.getMIMEType(Map<?,?> object)
           
 void PropertiesSerializer.writeObject(Map<?,?> object, OutputStream outputStream)
          Writes data to a properties stream.
 

Uses of Map in pivot.wtk
 

Methods in pivot.wtk with parameters of type Map
 void Component.setStyles(Map<String,?> styles)
          Applies a set of styles.