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

Packages that use Dictionary
org.apache.pivot.beans Contains classes for manipulating and interacting with Java Bean types. 
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.util Contains a collection of common utility classes. 
org.apache.pivot.xml Contains classes that facilitate interaction with an XML DOM. 
 

Uses of Dictionary in org.apache.pivot.beans
 

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

Uses of Dictionary in org.apache.pivot.collections
 

Subinterfaces of Dictionary in org.apache.pivot.collections
 interface Map<K,V>
          Collection interface representing set of key/value pairs.
 

Classes in org.apache.pivot.collections that implement Dictionary
 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.
 

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

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

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

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

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

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

Uses of Dictionary in org.apache.pivot.json
 

Methods in org.apache.pivot.json with parameters of type Dictionary
 void JSONSerializerListener.beginDictionary(JSONSerializer jsonSerializer, Dictionary<String,?> value)
          Called when the serializer has begun reading a dictionary value.
 void JSONSerializerListener.Adapter.beginDictionary(JSONSerializer jsonSerializer, Dictionary<String,?> value)
           
 

Uses of Dictionary in org.apache.pivot.util
 

Classes in org.apache.pivot.util that implement Dictionary
 class MIMEType
          Utility class for introspection a MIME type string.
 class Resources
          Represents a set of localizable resources.
 

Constructors in org.apache.pivot.util with parameters of type Dictionary
CalendarDate.Range(Dictionary<String,?> range)
           
Time.Range(Dictionary<String,?> range)
           
 

Uses of Dictionary in org.apache.pivot.xml
 

Classes in org.apache.pivot.xml that implement Dictionary
 class Element.ElementDictionary
          Dictionary representing the attributes declared by this element.
 class Element.NamespaceDictionary
          Dictionary representing the namespaces declared by this element.