public static class Char2ByteMap.BuilderCache
extends java.lang.Object
| Constructor and Description |
|---|
BuilderCache()
Default Constructor
|
BuilderCache(int initialSize)
Constructor providing a Minimum Capcity
|
| Modifier and Type | Method and Description |
|---|---|
Char2ByteArrayMap |
arrayMap()
Builds the Keys and Values into a Array Map
|
Char2ByteAVLTreeMap |
avlTreeMap()
Builds the Keys and Values into a AVL TreeMap
|
Char2ByteAVLTreeMap |
avlTreeMap(CharComparator comp)
Builds the Keys and Values into a AVL TreeMap
|
Char2ByteConcurrentOpenHashMap |
concurrentMap()
Builds the Keys and Values into a Concurrent Hash Map
|
Char2ByteLinkedOpenCustomHashMap |
customLinkedMap(CharStrategy strategy)
Builds the Keys and Values into a Linked Custom Hash Map
|
Char2ByteOpenCustomHashMap |
customMap(CharStrategy strategy)
Builds the Keys and Values into a Custom Hash Map
|
ImmutableChar2ByteOpenHashMap |
immutable()
Builds the Keys and Values into a Immutable Hash Map
|
Char2ByteLinkedOpenHashMap |
linkedMap()
Builds the Keys and Values into a Linked Hash Map
|
Char2ByteOpenHashMap |
map()
Builds the Keys and Values into a Hash Map
|
Char2ByteMap.BuilderCache |
put(Char2ByteMap.Entry entry)
Helper function to add a Entry into the Map
|
Char2ByteMap.BuilderCache |
put(java.lang.Character key,
java.lang.Byte value)
Helper function to add a Entry into the Map
|
Char2ByteMap.BuilderCache |
put(char key,
byte value)
Helper function to add a Entry into the Map
|
Char2ByteMap.BuilderCache |
putAll(Char2ByteMap map)
Helper function to add a Map to the Map
|
Char2ByteMap.BuilderCache |
putAll(java.util.Map<? extends java.lang.Character,? extends java.lang.Byte> map)
Helper function to add a Map to the Map
|
Char2ByteMap.BuilderCache |
putAll(ObjectIterable<Char2ByteMap.Entry> c)
Helper function to add a Collection of Entries to the Map
|
Char2ByteRBTreeMap |
rbTreeMap()
Builds the Keys and Values into a RedBlack TreeMap
|
Char2ByteRBTreeMap |
rbTreeMap(CharComparator comp)
Builds the Keys and Values into a RedBlack TreeMap
|
public BuilderCache()
public BuilderCache(int initialSize)
initialSize - the requested start capacitypublic Char2ByteMap.BuilderCache put(char key, byte value)
key - the key that should be addedvalue - the value that should be addedpublic Char2ByteMap.BuilderCache put(java.lang.Character key, java.lang.Byte value)
key - the key that should be addedvalue - the value that should be addedpublic Char2ByteMap.BuilderCache put(Char2ByteMap.Entry entry)
entry - the Entry that should be addedpublic Char2ByteMap.BuilderCache putAll(Char2ByteMap map)
map - that should be addedpublic Char2ByteMap.BuilderCache putAll(java.util.Map<? extends java.lang.Character,? extends java.lang.Byte> map)
map - that should be addedpublic Char2ByteMap.BuilderCache putAll(ObjectIterable<Char2ByteMap.Entry> c)
c - that should be addedpublic Char2ByteOpenHashMap map()
public Char2ByteLinkedOpenHashMap linkedMap()
public ImmutableChar2ByteOpenHashMap immutable()
public Char2ByteOpenCustomHashMap customMap(CharStrategy strategy)
strategy - the that controls the keys and valuespublic Char2ByteLinkedOpenCustomHashMap customLinkedMap(CharStrategy strategy)
strategy - the that controls the keys and valuespublic Char2ByteConcurrentOpenHashMap concurrentMap()
public Char2ByteArrayMap arrayMap()
public Char2ByteRBTreeMap rbTreeMap()
public Char2ByteRBTreeMap rbTreeMap(CharComparator comp)
comp - the Comparator that sorts the Treepublic Char2ByteAVLTreeMap avlTreeMap()
public Char2ByteAVLTreeMap avlTreeMap(CharComparator comp)
comp - the Comparator that sorts the Tree