Uses of Interface
org.apache.pivot.collections.Map

Packages that use Map
org.apache.pivot.beans Contains classes that provide access to the Java bean properties of an object via a dictionary interface. 
org.apache.pivot.charts.content Contains classes representing chart data. 
org.apache.pivot.collections Defines a set of classes and interfaces that serve as generic collections as well as the data model for UI components. 
org.apache.pivot.collections.adapter Provides a set of collection implementations that are backed by java.util collections. 
org.apache.pivot.collections.concurrent Contains a set of thread-safe collection implementations. 
org.apache.pivot.collections.immutable Contains a set of read-only collection implementations. 
org.apache.pivot.json Contains classes that facilitate interaction with JSON and JSON-like data structures. 
org.apache.pivot.serialization Contains a set of classes for use in data serialization. 
org.apache.pivot.sql Contains classes for working with SQL data. 
org.apache.pivot.tools.json Contains utilities dealing with JSON data. 
org.apache.pivot.tools.xml Contains utilities dealing with XML data. 
org.apache.pivot.util Contains a collection of common utility classes. 
org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
 

Uses of Map in org.apache.pivot.beans
 

Classes in org.apache.pivot.beans that implement Map
 class BeanAdapter
          Exposes Java bean properties of an object via the Map interface.
 

Uses of Map in org.apache.pivot.charts.content
 

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

Uses of Map in org.apache.pivot.collections
 

Classes in org.apache.pivot.collections that implement Map
 class EnumMap<E extends Enum<E>,V>
          Implementation of the Set interface whose keys are backed by a set of enum values.
 class HashMap<K,V>
          Implementation of the Map interface that is backed by a hash table.
 

Methods in org.apache.pivot.collections with parameters of type Map
 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.comparatorChanged(Map<K,V> map, Comparator<K> previousComparator)
           
 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.mapCleared(Map<K,V> map)
           
 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.valueAdded(Map<K,V> map, K key)
           
 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.valueRemoved(Map<K,V> map, K key, V value)
           
 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)
           
 void Map.MapListenerList.valueUpdated(Map<K,V> map, K key, V previousValue)
           
 

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

Uses of Map in org.apache.pivot.collections.adapter
 

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

Uses of Map in org.apache.pivot.collections.concurrent
 

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

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

Uses of Map in org.apache.pivot.collections.immutable
 

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

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

Uses of Map in org.apache.pivot.json
 

Methods in org.apache.pivot.json that return Map
static Map<String,?> JSON.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.
 

Methods in org.apache.pivot.json with parameters of type Map
static String JSONSerializer.toString(Map<String,?> value)
          Converts a map to a JSON string representation.
 

Uses of Map in org.apache.pivot.serialization
 

Methods in org.apache.pivot.serialization that return Map
 Map<?,?> PropertiesSerializer.readObject(InputStream inputStream)
          Reads data from a properties stream.
 

Methods in org.apache.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 org.apache.pivot.sql
 

Methods in org.apache.pivot.sql that return Map
 Map<String,Object> ResultList.get(int index)
           
 Map<String,Object> ResultList.update(int index, Map<String,Object> item)
           
 

Methods in org.apache.pivot.sql that return types with arguments of type Map
 Comparator<Map<String,Object>> ResultList.getComparator()
           
 ListenerList<ListListener<Map<String,Object>>> ResultList.getListListeners()
           
 Iterator<Map<String,Object>> ResultList.iterator()
           
 Sequence<Map<String,Object>> ResultList.remove(int index, int count)
           
 

Methods in org.apache.pivot.sql with parameters of type Map
 int ResultList.add(Map<String,Object> item)
           
 int ResultList.indexOf(Map<String,Object> item)
           
 void ResultList.insert(Map<String,Object> item, int index)
           
 int ResultList.remove(Map<String,Object> item)
           
 Map<String,Object> ResultList.update(int index, Map<String,Object> item)
           
 

Method parameters in org.apache.pivot.sql with type arguments of type Map
 void ResultList.setComparator(Comparator<Map<String,Object>> comparator)
           
 

Uses of Map in org.apache.pivot.tools.json
 

Methods in org.apache.pivot.tools.json with parameters of type Map
 void JSONViewer.startup(Display display, Map<String,String> properties)
           
 

Uses of Map in org.apache.pivot.tools.xml
 

Methods in org.apache.pivot.tools.xml with parameters of type Map
 void XMLViewer.startup(Display display, Map<String,String> properties)
           
 

Uses of Map in org.apache.pivot.util
 

Methods in org.apache.pivot.util that return Map
 Map<String,?> Resources.getMap(String key)
           
 

Uses of Map in org.apache.pivot.wtk
 

Methods in org.apache.pivot.wtk with parameters of type Map
 void Component.setStyles(Map<String,?> styles)
          Applies a set of styles.
 void Application.startup(Display display, Map<String,String> properties)
          Called when the application is starting up.
 void ScriptApplication.startup(Display display, Map<String,String> properties)