Uses of Interface
org.apache.pivot.collections.Map
-
Packages that use Map Package Description org.apache.pivot.beans Contains classes for manipulating and interacting with Java Bean types.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 byjava.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.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 Modifier and Type Class Description class
BeanAdapter
Exposes Java bean properties of an object via theMap
interface.Methods in org.apache.pivot.beans that return Map Modifier and Type Method Description static Map<java.lang.String,java.lang.String>
BXMLSerializer. getFileExtensions()
Returns the file extension/MIME type map.static Map<java.lang.String,java.lang.Class<? extends Serializer<?>>>
BXMLSerializer. getMimeTypes()
Returns the MIME type/serializer class map.Map<java.lang.String,java.lang.Object>
BXMLSerializer. getNamespace()
Map<java.lang.String,java.lang.Object>
NamespaceBinding. getNamespace()
Map<java.lang.String,java.lang.Object>
Resolvable. getNamespace()
Access the serializer's namespace.Methods in org.apache.pivot.beans with parameters of type Map Modifier and Type Method Description void
Bindable. initialize(Map<java.lang.String,java.lang.Object> namespace, java.net.URL location, Resources resources)
Called to initialize the class after it has been completely processed and bound by the serializer.boolean
BeanAdapter. putAll(Map<java.lang.String,?> valueMap, boolean ignoreErrors)
Invokes the setter methods for all the given properties that are present in the map.void
BXMLSerializer. setNamespace(Map<java.lang.String,java.lang.Object> namespace)
void
Resolvable. setNamespace(Map<java.lang.String,java.lang.Object> namespace)
Sets the serializer's namespace.Constructors in org.apache.pivot.beans with parameters of type Map Constructor Description NamespaceBinding(Map<java.lang.String,java.lang.Object> namespace, java.lang.String sourcePath, java.lang.String targetPath)
NamespaceBinding(Map<java.lang.String,java.lang.Object> namespace, java.lang.String sourcePath, java.lang.String targetPath, NamespaceBinding.BindMapping bindMapping)
-
Uses of Map in org.apache.pivot.charts.content
Classes in org.apache.pivot.charts.content that implement Map Modifier and Type Class Description 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 Modifier and Type Class Description class
EnumMap<E extends java.lang.Enum<E>,V>
Implementation of theMap
interface whose keys are backed by an enum.class
HashMap<K,V>
Implementation of theMap
interface that is backed by a hash table.Methods in org.apache.pivot.collections with parameters of type Map Modifier and Type Method Description void
MapListener.Adapter. comparatorChanged(Map<K,V> map, java.util.Comparator<K> previousComparator)
Deprecated.default void
MapListener. comparatorChanged(Map<K,V> map, java.util.Comparator<K> previousComparator)
Called when a map's comparator has changed.void
MapListener.Listeners. comparatorChanged(Map<K,V> map, java.util.Comparator<K> previousComparator)
void
MapListener.Adapter. mapCleared(Map<K,V> map)
Deprecated.void
MapListener.Listeners. mapCleared(Map<K,V> map)
default void
MapListener. mapCleared(Map<K,V> map)
Called when map data has been reset.default void
Dictionary. putAll(Map<K,V> map)
Put all the key/value pairs from the given map into this dictionary.void
MapListener.Adapter. valueAdded(Map<K,V> map, K key)
Deprecated.void
MapListener.Listeners. valueAdded(Map<K,V> map, K key)
default void
MapListener. valueAdded(Map<K,V> map, K key)
Called when a key/value pair has been added to a map.void
MapListener.Adapter. valueRemoved(Map<K,V> map, K key, V value)
Deprecated.void
MapListener.Listeners. valueRemoved(Map<K,V> map, K key, V value)
default 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. valueUpdated(Map<K,V> map, K key, V previousValue)
Deprecated.void
MapListener.Listeners. valueUpdated(Map<K,V> map, K key, V previousValue)
default void
MapListener. valueUpdated(Map<K,V> map, K key, V previousValue)
Called when a map value has been updated.Constructors in org.apache.pivot.collections with parameters of type Map Constructor Description HashMap(Map<K,V> map)
-
Uses of Map in org.apache.pivot.collections.adapter
Classes in org.apache.pivot.collections.adapter that implement Map Modifier and Type Class Description class
MapAdapter<K,V>
Implementation of theMap
interface that is backed by an instance ofMap
. -
Uses of Map in org.apache.pivot.collections.concurrent
Classes in org.apache.pivot.collections.concurrent that implement Map Modifier and Type Class Description class
SynchronizedMap<K,V>
Synchronized implementation of theMap
interface.Constructors in org.apache.pivot.collections.concurrent with parameters of type Map Constructor Description SynchronizedMap(Map<K,V> map)
-
Uses of Map in org.apache.pivot.collections.immutable
Classes in org.apache.pivot.collections.immutable that implement Map Modifier and Type Class Description class
ImmutableMap<K,V>
Unmodifiable implementation of theMap
interface.Constructors in org.apache.pivot.collections.immutable with parameters of type Map Constructor Description ImmutableMap(Map<K,V> map)
-
Uses of Map in org.apache.pivot.json
Methods in org.apache.pivot.json that return Map Modifier and Type Method Description static Map<java.lang.String,?>
JSONSerializer. parseMap(java.lang.String json)
Converts a JSON value to a map. -
Uses of Map in org.apache.pivot.serialization
Methods in org.apache.pivot.serialization that return Map Modifier and Type Method Description Map<?,?>
PropertiesSerializer. readObject(java.io.InputStream inputStream)
Reads data from a properties stream.Methods in org.apache.pivot.serialization with parameters of type Map Modifier and Type Method Description 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 org.apache.pivot.sql
Methods in org.apache.pivot.sql that return Map Modifier and Type Method Description Map<java.lang.String,java.lang.Object>
ResultList. get(int index)
Map<java.lang.String,java.lang.Object>
ResultList. update(int index, Map<java.lang.String,java.lang.Object> item)
Methods in org.apache.pivot.sql that return types with arguments of type Map Modifier and Type Method Description java.util.Comparator<Map<java.lang.String,java.lang.Object>>
ResultList. getComparator()
ListenerList<ListListener<Map<java.lang.String,java.lang.Object>>>
ResultList. getListListeners()
java.util.Iterator<Map<java.lang.String,java.lang.Object>>
ResultList. iterator()
Sequence<Map<java.lang.String,java.lang.Object>>
ResultList. remove(int index, int count)
Methods in org.apache.pivot.sql with parameters of type Map Modifier and Type Method Description int
ResultList. add(Map<java.lang.String,java.lang.Object> item)
int
ResultList. indexOf(Map<java.lang.String,java.lang.Object> item)
void
ResultList. insert(Map<java.lang.String,java.lang.Object> item, int index)
int
ResultList. remove(Map<java.lang.String,java.lang.Object> item)
Map<java.lang.String,java.lang.Object>
ResultList. update(int index, Map<java.lang.String,java.lang.Object> item)
Method parameters in org.apache.pivot.sql with type arguments of type Map Modifier and Type Method Description void
ResultList. setComparator(java.util.Comparator<Map<java.lang.String,java.lang.Object>> comparator)
-
Uses of Map in org.apache.pivot.wtk
Methods in org.apache.pivot.wtk that return Map Modifier and Type Method Description static Map<java.lang.String,Map<java.lang.String,?>>
Component. getNamedStyles()
Map<java.lang.String,java.lang.Object>
ApplicationWithProperties.Adapter. getProperties()
Map<java.lang.String,java.lang.Object>
ApplicationWithProperties. getProperties()
Get the property container at application-level scope.static Map<java.lang.Class<? extends Component>,Map<java.lang.String,?>>
Component. getTypedStyles()
Methods in org.apache.pivot.wtk that return types with arguments of type Map Modifier and Type Method Description static Map<java.lang.String,Map<java.lang.String,?>>
Component. getNamedStyles()
static Map<java.lang.Class<? extends Component>,Map<java.lang.String,?>>
Component. getTypedStyles()
Methods in org.apache.pivot.wtk with parameters of type Map Modifier and Type Method Description void
Component. setStyles(Map<java.lang.String,?> styles)
Applies a set of styles.void
Application.Adapter. startup(Display display, Map<java.lang.String,java.lang.String> properties)
Deprecated.default void
Application. startup(Display display, Map<java.lang.String,java.lang.String> properties)
Called when the application is starting up.void
ScriptApplication. startup(Display display, Map<java.lang.String,java.lang.String> properties)
-