Package org.apache.juneau.internal
Class SimpleMap<K,V> 
java.lang.Object
java.util.AbstractMap<K,V>
 
org.apache.juneau.internal.SimpleMap<K,V> 
- Type Parameters:
- K- The key type.
- V- The value type.
- All Implemented Interfaces:
- Map<K,- V> 
An instance of a Map  where the keys and values are simple arrays.
 
 Typically more efficient than 
Does not support adding or removing entries.
Setting values overwrites the value on the underlying value array.
See Also:
- 
Nested Class SummaryNested classes/interfaces inherited from class java.util.AbstractMapAbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object, V extends Object> 
- 
Constructor SummaryConstructors
- 
Method SummaryMethods inherited from class java.util.AbstractMapclear, clone, containsKey, containsValue, equals, hashCode, isEmpty, putAll, remove, size, toString, valuesMethods 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- 
SimpleMapConstructor.- Parameters:
- keys- The map keys. Must not be- null .
- values- The map values. Must not be- null .
 
 
- 
- 
Method Details- 
entrySet
- 
get
- 
keySet
- 
put
 
-