public static class Float2FloatMap.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 |
|---|---|
Float2FloatArrayMap |
arrayMap()
Builds the Keys and Values into a Array Map
|
Float2FloatAVLTreeMap |
avlTreeMap()
Builds the Keys and Values into a AVL TreeMap
|
Float2FloatAVLTreeMap |
avlTreeMap(FloatComparator comp)
Builds the Keys and Values into a AVL TreeMap
|
Float2FloatConcurrentOpenHashMap |
concurrentMap()
Builds the Keys and Values into a Concurrent Hash Map
|
Float2FloatLinkedOpenCustomHashMap |
customLinkedMap(FloatStrategy strategy)
Builds the Keys and Values into a Linked Custom Hash Map
|
Float2FloatOpenCustomHashMap |
customMap(FloatStrategy strategy)
Builds the Keys and Values into a Custom Hash Map
|
ImmutableFloat2FloatOpenHashMap |
immutable()
Builds the Keys and Values into a Immutable Hash Map
|
Float2FloatLinkedOpenHashMap |
linkedMap()
Builds the Keys and Values into a Linked Hash Map
|
Float2FloatOpenHashMap |
map()
Builds the Keys and Values into a Hash Map
|
Float2FloatMap.BuilderCache |
put(Float2FloatMap.Entry entry)
Helper function to add a Entry into the Map
|
Float2FloatMap.BuilderCache |
put(float key,
float value)
Helper function to add a Entry into the Map
|
Float2FloatMap.BuilderCache |
put(java.lang.Float key,
java.lang.Float value)
Helper function to add a Entry into the Map
|
Float2FloatMap.BuilderCache |
putAll(Float2FloatMap map)
Helper function to add a Map to the Map
|
Float2FloatMap.BuilderCache |
putAll(java.util.Map<? extends java.lang.Float,? extends java.lang.Float> map)
Helper function to add a Map to the Map
|
Float2FloatMap.BuilderCache |
putAll(ObjectIterable<Float2FloatMap.Entry> c)
Helper function to add a Collection of Entries to the Map
|
Float2FloatRBTreeMap |
rbTreeMap()
Builds the Keys and Values into a RedBlack TreeMap
|
Float2FloatRBTreeMap |
rbTreeMap(FloatComparator comp)
Builds the Keys and Values into a RedBlack TreeMap
|
public BuilderCache()
public BuilderCache(int initialSize)
initialSize - the requested start capacitypublic Float2FloatMap.BuilderCache put(float key, float value)
key - the key that should be addedvalue - the value that should be addedpublic Float2FloatMap.BuilderCache put(java.lang.Float key, java.lang.Float value)
key - the key that should be addedvalue - the value that should be addedpublic Float2FloatMap.BuilderCache put(Float2FloatMap.Entry entry)
entry - the Entry that should be addedpublic Float2FloatMap.BuilderCache putAll(Float2FloatMap map)
map - that should be addedpublic Float2FloatMap.BuilderCache putAll(java.util.Map<? extends java.lang.Float,? extends java.lang.Float> map)
map - that should be addedpublic Float2FloatMap.BuilderCache putAll(ObjectIterable<Float2FloatMap.Entry> c)
c - that should be addedpublic Float2FloatOpenHashMap map()
public Float2FloatLinkedOpenHashMap linkedMap()
public ImmutableFloat2FloatOpenHashMap immutable()
public Float2FloatOpenCustomHashMap customMap(FloatStrategy strategy)
strategy - the that controls the keys and valuespublic Float2FloatLinkedOpenCustomHashMap customLinkedMap(FloatStrategy strategy)
strategy - the that controls the keys and valuespublic Float2FloatConcurrentOpenHashMap concurrentMap()
public Float2FloatArrayMap arrayMap()
public Float2FloatRBTreeMap rbTreeMap()
public Float2FloatRBTreeMap rbTreeMap(FloatComparator comp)
comp - the Comparator that sorts the Treepublic Float2FloatAVLTreeMap avlTreeMap()
public Float2FloatAVLTreeMap avlTreeMap(FloatComparator comp)
comp - the Comparator that sorts the Tree