Package com.jme3.util
Class ListMap<K,V> 
java.lang.Object
java.util.AbstractMap<K,V>
 
com.jme3.util.ListMap<K,V> 
- All Implemented Interfaces:
- Serializable,- Cloneable,- Map<K,- V> 
Implementation of a Map that favors iteration speed rather than
 get/put speed.
- See Also:
- 
Nested Class SummaryNested classes/interfaces inherited from class java.util.AbstractMapAbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K, V> 
- 
Constructor SummaryConstructors
- 
Method SummaryMethods inherited from class java.util.AbstractMapequals, hashCode, toStringMethods inherited from class java.lang.Objectfinalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Mapcompute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
- 
Constructor Details- 
ListMappublic ListMap()
- 
ListMappublic ListMap(int initialCapacity) 
- 
ListMap
 
- 
- 
Method Details- 
sizepublic int size()
- 
getEntry
- 
getValue
- 
getKey
- 
isEmptypublic boolean isEmpty()
- 
containsKey- Specified by:
- containsKeyin interface- Map<K,- V> 
- Overrides:
- containsKeyin class- AbstractMap<K,- V> 
 
- 
containsValue- Specified by:
- containsValuein interface- Map<K,- V> 
- Overrides:
- containsValuein class- AbstractMap<K,- V> 
 
- 
get
- 
put
- 
remove
- 
putAll
- 
clearpublic void clear()
- 
clone- Overrides:
- clonein class- AbstractMap<K,- V> 
 
- 
keySet
- 
values
- 
entrySet
 
-