public static class Float2CharMap.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 |
|---|---|
Float2CharArrayMap |
arrayMap()
Builds the Keys and Values into a Array Map
|
Float2CharAVLTreeMap |
avlTreeMap()
Builds the Keys and Values into a AVL TreeMap
|
Float2CharAVLTreeMap |
avlTreeMap(FloatComparator comp)
Builds the Keys and Values into a AVL TreeMap
|
Float2CharConcurrentOpenHashMap |
concurrentMap()
Builds the Keys and Values into a Concurrent Hash Map
|
Float2CharLinkedOpenCustomHashMap |
customLinkedMap(FloatStrategy strategy)
Builds the Keys and Values into a Linked Custom Hash Map
|
Float2CharOpenCustomHashMap |
customMap(FloatStrategy strategy)
Builds the Keys and Values into a Custom Hash Map
|
ImmutableFloat2CharOpenHashMap |
immutable()
Builds the Keys and Values into a Immutable Hash Map
|
Float2CharLinkedOpenHashMap |
linkedMap()
Builds the Keys and Values into a Linked Hash Map
|
Float2CharOpenHashMap |
map()
Builds the Keys and Values into a Hash Map
|
Float2CharMap.BuilderCache |
put(Float2CharMap.Entry entry)
Helper function to add a Entry into the Map
|
Float2CharMap.BuilderCache |
put(float key,
char value)
Helper function to add a Entry into the Map
|
Float2CharMap.BuilderCache |
put(java.lang.Float key,
java.lang.Character value)
Helper function to add a Entry into the Map
|
Float2CharMap.BuilderCache |
putAll(Float2CharMap map)
Helper function to add a Map to the Map
|
Float2CharMap.BuilderCache |
putAll(java.util.Map<? extends java.lang.Float,? extends java.lang.Character> map)
Helper function to add a Map to the Map
|
Float2CharMap.BuilderCache |
putAll(ObjectIterable<Float2CharMap.Entry> c)
Helper function to add a Collection of Entries to the Map
|
Float2CharRBTreeMap |
rbTreeMap()
Builds the Keys and Values into a RedBlack TreeMap
|
Float2CharRBTreeMap |
rbTreeMap(FloatComparator comp)
Builds the Keys and Values into a RedBlack TreeMap
|
public BuilderCache()
public BuilderCache(int initialSize)
initialSize - the requested start capacitypublic Float2CharMap.BuilderCache put(float key, char value)
key - the key that should be addedvalue - the value that should be addedpublic Float2CharMap.BuilderCache put(java.lang.Float key, java.lang.Character value)
key - the key that should be addedvalue - the value that should be addedpublic Float2CharMap.BuilderCache put(Float2CharMap.Entry entry)
entry - the Entry that should be addedpublic Float2CharMap.BuilderCache putAll(Float2CharMap map)
map - that should be addedpublic Float2CharMap.BuilderCache putAll(java.util.Map<? extends java.lang.Float,? extends java.lang.Character> map)
map - that should be addedpublic Float2CharMap.BuilderCache putAll(ObjectIterable<Float2CharMap.Entry> c)
c - that should be addedpublic Float2CharOpenHashMap map()
public Float2CharLinkedOpenHashMap linkedMap()
public ImmutableFloat2CharOpenHashMap immutable()
public Float2CharOpenCustomHashMap customMap(FloatStrategy strategy)
strategy - the that controls the keys and valuespublic Float2CharLinkedOpenCustomHashMap customLinkedMap(FloatStrategy strategy)
strategy - the that controls the keys and valuespublic Float2CharConcurrentOpenHashMap concurrentMap()
public Float2CharArrayMap arrayMap()
public Float2CharRBTreeMap rbTreeMap()
public Float2CharRBTreeMap rbTreeMap(FloatComparator comp)
comp - the Comparator that sorts the Treepublic Float2CharAVLTreeMap avlTreeMap()
public Float2CharAVLTreeMap avlTreeMap(FloatComparator comp)
comp - the Comparator that sorts the Tree