public static class Char2FloatMap.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 |
|---|---|
Char2FloatArrayMap |
arrayMap()
Builds the Keys and Values into a Array Map
|
Char2FloatAVLTreeMap |
avlTreeMap()
Builds the Keys and Values into a AVL TreeMap
|
Char2FloatAVLTreeMap |
avlTreeMap(CharComparator comp)
Builds the Keys and Values into a AVL TreeMap
|
Char2FloatConcurrentOpenHashMap |
concurrentMap()
Builds the Keys and Values into a Concurrent Hash Map
|
Char2FloatLinkedOpenCustomHashMap |
customLinkedMap(CharStrategy strategy)
Builds the Keys and Values into a Linked Custom Hash Map
|
Char2FloatOpenCustomHashMap |
customMap(CharStrategy strategy)
Builds the Keys and Values into a Custom Hash Map
|
ImmutableChar2FloatOpenHashMap |
immutable()
Builds the Keys and Values into a Immutable Hash Map
|
Char2FloatLinkedOpenHashMap |
linkedMap()
Builds the Keys and Values into a Linked Hash Map
|
Char2FloatOpenHashMap |
map()
Builds the Keys and Values into a Hash Map
|
Char2FloatMap.BuilderCache |
put(Char2FloatMap.Entry entry)
Helper function to add a Entry into the Map
|
Char2FloatMap.BuilderCache |
put(java.lang.Character key,
java.lang.Float value)
Helper function to add a Entry into the Map
|
Char2FloatMap.BuilderCache |
put(char key,
float value)
Helper function to add a Entry into the Map
|
Char2FloatMap.BuilderCache |
putAll(Char2FloatMap map)
Helper function to add a Map to the Map
|
Char2FloatMap.BuilderCache |
putAll(java.util.Map<? extends java.lang.Character,? extends java.lang.Float> map)
Helper function to add a Map to the Map
|
Char2FloatMap.BuilderCache |
putAll(ObjectIterable<Char2FloatMap.Entry> c)
Helper function to add a Collection of Entries to the Map
|
Char2FloatRBTreeMap |
rbTreeMap()
Builds the Keys and Values into a RedBlack TreeMap
|
Char2FloatRBTreeMap |
rbTreeMap(CharComparator comp)
Builds the Keys and Values into a RedBlack TreeMap
|
public BuilderCache()
public BuilderCache(int initialSize)
initialSize - the requested start capacitypublic Char2FloatMap.BuilderCache put(char key, float value)
key - the key that should be addedvalue - the value that should be addedpublic Char2FloatMap.BuilderCache put(java.lang.Character key, java.lang.Float value)
key - the key that should be addedvalue - the value that should be addedpublic Char2FloatMap.BuilderCache put(Char2FloatMap.Entry entry)
entry - the Entry that should be addedpublic Char2FloatMap.BuilderCache putAll(Char2FloatMap map)
map - that should be addedpublic Char2FloatMap.BuilderCache putAll(java.util.Map<? extends java.lang.Character,? extends java.lang.Float> map)
map - that should be addedpublic Char2FloatMap.BuilderCache putAll(ObjectIterable<Char2FloatMap.Entry> c)
c - that should be addedpublic Char2FloatOpenHashMap map()
public Char2FloatLinkedOpenHashMap linkedMap()
public ImmutableChar2FloatOpenHashMap immutable()
public Char2FloatOpenCustomHashMap customMap(CharStrategy strategy)
strategy - the that controls the keys and valuespublic Char2FloatLinkedOpenCustomHashMap customLinkedMap(CharStrategy strategy)
strategy - the that controls the keys and valuespublic Char2FloatConcurrentOpenHashMap concurrentMap()
public Char2FloatArrayMap arrayMap()
public Char2FloatRBTreeMap rbTreeMap()
public Char2FloatRBTreeMap rbTreeMap(CharComparator comp)
comp - the Comparator that sorts the Treepublic Char2FloatAVLTreeMap avlTreeMap()
public Char2FloatAVLTreeMap avlTreeMap(CharComparator comp)
comp - the Comparator that sorts the Tree