public static class Float2ByteMap.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 |
|---|---|
Float2ByteArrayMap |
arrayMap()
Builds the Keys and Values into a Array Map
|
Float2ByteAVLTreeMap |
avlTreeMap()
Builds the Keys and Values into a AVL TreeMap
|
Float2ByteAVLTreeMap |
avlTreeMap(FloatComparator comp)
Builds the Keys and Values into a AVL TreeMap
|
Float2ByteConcurrentOpenHashMap |
concurrentMap()
Builds the Keys and Values into a Concurrent Hash Map
|
Float2ByteLinkedOpenCustomHashMap |
customLinkedMap(FloatStrategy strategy)
Builds the Keys and Values into a Linked Custom Hash Map
|
Float2ByteOpenCustomHashMap |
customMap(FloatStrategy strategy)
Builds the Keys and Values into a Custom Hash Map
|
ImmutableFloat2ByteOpenHashMap |
immutable()
Builds the Keys and Values into a Immutable Hash Map
|
Float2ByteLinkedOpenHashMap |
linkedMap()
Builds the Keys and Values into a Linked Hash Map
|
Float2ByteOpenHashMap |
map()
Builds the Keys and Values into a Hash Map
|
Float2ByteMap.BuilderCache |
put(Float2ByteMap.Entry entry)
Helper function to add a Entry into the Map
|
Float2ByteMap.BuilderCache |
put(float key,
byte value)
Helper function to add a Entry into the Map
|
Float2ByteMap.BuilderCache |
put(java.lang.Float key,
java.lang.Byte value)
Helper function to add a Entry into the Map
|
Float2ByteMap.BuilderCache |
putAll(Float2ByteMap map)
Helper function to add a Map to the Map
|
Float2ByteMap.BuilderCache |
putAll(java.util.Map<? extends java.lang.Float,? extends java.lang.Byte> map)
Helper function to add a Map to the Map
|
Float2ByteMap.BuilderCache |
putAll(ObjectIterable<Float2ByteMap.Entry> c)
Helper function to add a Collection of Entries to the Map
|
Float2ByteRBTreeMap |
rbTreeMap()
Builds the Keys and Values into a RedBlack TreeMap
|
Float2ByteRBTreeMap |
rbTreeMap(FloatComparator comp)
Builds the Keys and Values into a RedBlack TreeMap
|
public BuilderCache()
public BuilderCache(int initialSize)
initialSize - the requested start capacitypublic Float2ByteMap.BuilderCache put(float key, byte value)
key - the key that should be addedvalue - the value that should be addedpublic Float2ByteMap.BuilderCache put(java.lang.Float key, java.lang.Byte value)
key - the key that should be addedvalue - the value that should be addedpublic Float2ByteMap.BuilderCache put(Float2ByteMap.Entry entry)
entry - the Entry that should be addedpublic Float2ByteMap.BuilderCache putAll(Float2ByteMap map)
map - that should be addedpublic Float2ByteMap.BuilderCache putAll(java.util.Map<? extends java.lang.Float,? extends java.lang.Byte> map)
map - that should be addedpublic Float2ByteMap.BuilderCache putAll(ObjectIterable<Float2ByteMap.Entry> c)
c - that should be addedpublic Float2ByteOpenHashMap map()
public Float2ByteLinkedOpenHashMap linkedMap()
public ImmutableFloat2ByteOpenHashMap immutable()
public Float2ByteOpenCustomHashMap customMap(FloatStrategy strategy)
strategy - the that controls the keys and valuespublic Float2ByteLinkedOpenCustomHashMap customLinkedMap(FloatStrategy strategy)
strategy - the that controls the keys and valuespublic Float2ByteConcurrentOpenHashMap concurrentMap()
public Float2ByteArrayMap arrayMap()
public Float2ByteRBTreeMap rbTreeMap()
public Float2ByteRBTreeMap rbTreeMap(FloatComparator comp)
comp - the Comparator that sorts the Treepublic Float2ByteAVLTreeMap avlTreeMap()
public Float2ByteAVLTreeMap avlTreeMap(FloatComparator comp)
comp - the Comparator that sorts the Tree