|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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,
java.util.Comparator<K> previousComparator)
|
void |
MapListener.comparatorChanged(Map<K,V> map,
java.util.Comparator<K> previousComparator)
Called when a map's comparator has changed. |
void |
Map.MapListenerList.mapCleared(Map<K,V> map)
|
void |
MapListener.mapCleared(Map<K,V> map)
Called when map data has been reset. |
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 |
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 |
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. |
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<java.lang.String,?> |
JSONSerializer.getMap(java.lang.Object root,
java.lang.String path)
Returns the value at the given path as a map. |
static Map<java.lang.String,?> |
JSONSerializer.parseMap(java.lang.String string)
Parses a JSON-formatted object value into a map. |
Map<?,?> |
PropertiesSerializer.readObject(java.io.InputStream inputStream)
Reads data from a properties stream. |
Methods in pivot.serialization with parameters of type Map | |
---|---|
java.lang.String |
PropertiesSerializer.getMIMEType(Map<?,?> object)
|
void |
PropertiesSerializer.writeObject(Map<?,?> object,
java.io.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<java.lang.String,?> styles)
Applies a set of styles. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |