public static class Byte2FloatMap.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 |
|---|---|
Byte2FloatArrayMap |
arrayMap()
Builds the Keys and Values into a Array Map
|
Byte2FloatAVLTreeMap |
avlTreeMap()
Builds the Keys and Values into a AVL TreeMap
|
Byte2FloatAVLTreeMap |
avlTreeMap(ByteComparator comp)
Builds the Keys and Values into a AVL TreeMap
|
Byte2FloatConcurrentOpenHashMap |
concurrentMap()
Builds the Keys and Values into a Concurrent Hash Map
|
Byte2FloatLinkedOpenCustomHashMap |
customLinkedMap(ByteStrategy strategy)
Builds the Keys and Values into a Linked Custom Hash Map
|
Byte2FloatOpenCustomHashMap |
customMap(ByteStrategy strategy)
Builds the Keys and Values into a Custom Hash Map
|
ImmutableByte2FloatOpenHashMap |
immutable()
Builds the Keys and Values into a Immutable Hash Map
|
Byte2FloatLinkedOpenHashMap |
linkedMap()
Builds the Keys and Values into a Linked Hash Map
|
Byte2FloatOpenHashMap |
map()
Builds the Keys and Values into a Hash Map
|
Byte2FloatMap.BuilderCache |
put(Byte2FloatMap.Entry entry)
Helper function to add a Entry into the Map
|
Byte2FloatMap.BuilderCache |
put(byte key,
float value)
Helper function to add a Entry into the Map
|
Byte2FloatMap.BuilderCache |
put(java.lang.Byte key,
java.lang.Float value)
Helper function to add a Entry into the Map
|
Byte2FloatMap.BuilderCache |
putAll(Byte2FloatMap map)
Helper function to add a Map to the Map
|
Byte2FloatMap.BuilderCache |
putAll(java.util.Map<? extends java.lang.Byte,? extends java.lang.Float> map)
Helper function to add a Map to the Map
|
Byte2FloatMap.BuilderCache |
putAll(ObjectIterable<Byte2FloatMap.Entry> c)
Helper function to add a Collection of Entries to the Map
|
Byte2FloatRBTreeMap |
rbTreeMap()
Builds the Keys and Values into a RedBlack TreeMap
|
Byte2FloatRBTreeMap |
rbTreeMap(ByteComparator comp)
Builds the Keys and Values into a RedBlack TreeMap
|
public BuilderCache()
public BuilderCache(int initialSize)
initialSize - the requested start capacitypublic Byte2FloatMap.BuilderCache put(byte key, float value)
key - the key that should be addedvalue - the value that should be addedpublic Byte2FloatMap.BuilderCache put(java.lang.Byte key, java.lang.Float value)
key - the key that should be addedvalue - the value that should be addedpublic Byte2FloatMap.BuilderCache put(Byte2FloatMap.Entry entry)
entry - the Entry that should be addedpublic Byte2FloatMap.BuilderCache putAll(Byte2FloatMap map)
map - that should be addedpublic Byte2FloatMap.BuilderCache putAll(java.util.Map<? extends java.lang.Byte,? extends java.lang.Float> map)
map - that should be addedpublic Byte2FloatMap.BuilderCache putAll(ObjectIterable<Byte2FloatMap.Entry> c)
c - that should be addedpublic Byte2FloatOpenHashMap map()
public Byte2FloatLinkedOpenHashMap linkedMap()
public ImmutableByte2FloatOpenHashMap immutable()
public Byte2FloatOpenCustomHashMap customMap(ByteStrategy strategy)
strategy - the that controls the keys and valuespublic Byte2FloatLinkedOpenCustomHashMap customLinkedMap(ByteStrategy strategy)
strategy - the that controls the keys and valuespublic Byte2FloatConcurrentOpenHashMap concurrentMap()
public Byte2FloatArrayMap arrayMap()
public Byte2FloatRBTreeMap rbTreeMap()
public Byte2FloatRBTreeMap rbTreeMap(ByteComparator comp)
comp - the Comparator that sorts the Treepublic Byte2FloatAVLTreeMap avlTreeMap()
public Byte2FloatAVLTreeMap avlTreeMap(ByteComparator comp)
comp - the Comparator that sorts the Tree