Package org.simpleframework.xml.util
Class Dictionary.Table<T>
- All Implemented Interfaces:
Serializable
,Cloneable
,Map<String,
T>
- Enclosing class:
Dictionary<T extends Entry>
The
Table
object is used to represent a map of
entries mapped to a string name. Each implementation of the
entry must contain a name attribute, which is used to insert
the entry into the map. This acts as a typedef.- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K,
V>, AbstractMap.SimpleImmutableEntry<K, V> -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class java.util.HashMap
clear, clone, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, forEach, get, getOrDefault, isEmpty, keySet, merge, newHashMap, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString
-
Constructor Details
-
Table
public Table()Constructor for theTable
object. This will create a map that is used to store the entry objects that are serialized and deserialized to and from an XML source.
-