public static class Double2BooleanMap.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 |
|---|---|
Double2BooleanArrayMap |
arrayMap()
Builds the Keys and Values into a Array Map
|
Double2BooleanAVLTreeMap |
avlTreeMap()
Builds the Keys and Values into a AVL TreeMap
|
Double2BooleanAVLTreeMap |
avlTreeMap(DoubleComparator comp)
Builds the Keys and Values into a AVL TreeMap
|
Double2BooleanConcurrentOpenHashMap |
concurrentMap()
Builds the Keys and Values into a Concurrent Hash Map
|
Double2BooleanLinkedOpenCustomHashMap |
customLinkedMap(DoubleStrategy strategy)
Builds the Keys and Values into a Linked Custom Hash Map
|
Double2BooleanOpenCustomHashMap |
customMap(DoubleStrategy strategy)
Builds the Keys and Values into a Custom Hash Map
|
ImmutableDouble2BooleanOpenHashMap |
immutable()
Builds the Keys and Values into a Immutable Hash Map
|
Double2BooleanLinkedOpenHashMap |
linkedMap()
Builds the Keys and Values into a Linked Hash Map
|
Double2BooleanOpenHashMap |
map()
Builds the Keys and Values into a Hash Map
|
Double2BooleanMap.BuilderCache |
put(Double2BooleanMap.Entry entry)
Helper function to add a Entry into the Map
|
Double2BooleanMap.BuilderCache |
put(double key,
boolean value)
Helper function to add a Entry into the Map
|
Double2BooleanMap.BuilderCache |
put(java.lang.Double key,
java.lang.Boolean value)
Helper function to add a Entry into the Map
|
Double2BooleanMap.BuilderCache |
putAll(Double2BooleanMap map)
Helper function to add a Map to the Map
|
Double2BooleanMap.BuilderCache |
putAll(java.util.Map<? extends java.lang.Double,? extends java.lang.Boolean> map)
Helper function to add a Map to the Map
|
Double2BooleanMap.BuilderCache |
putAll(ObjectIterable<Double2BooleanMap.Entry> c)
Helper function to add a Collection of Entries to the Map
|
Double2BooleanRBTreeMap |
rbTreeMap()
Builds the Keys and Values into a RedBlack TreeMap
|
Double2BooleanRBTreeMap |
rbTreeMap(DoubleComparator comp)
Builds the Keys and Values into a RedBlack TreeMap
|
public BuilderCache()
public BuilderCache(int initialSize)
initialSize - the requested start capacitypublic Double2BooleanMap.BuilderCache put(double key, boolean value)
key - the key that should be addedvalue - the value that should be addedpublic Double2BooleanMap.BuilderCache put(java.lang.Double key, java.lang.Boolean value)
key - the key that should be addedvalue - the value that should be addedpublic Double2BooleanMap.BuilderCache put(Double2BooleanMap.Entry entry)
entry - the Entry that should be addedpublic Double2BooleanMap.BuilderCache putAll(Double2BooleanMap map)
map - that should be addedpublic Double2BooleanMap.BuilderCache putAll(java.util.Map<? extends java.lang.Double,? extends java.lang.Boolean> map)
map - that should be addedpublic Double2BooleanMap.BuilderCache putAll(ObjectIterable<Double2BooleanMap.Entry> c)
c - that should be addedpublic Double2BooleanOpenHashMap map()
public Double2BooleanLinkedOpenHashMap linkedMap()
public ImmutableDouble2BooleanOpenHashMap immutable()
public Double2BooleanOpenCustomHashMap customMap(DoubleStrategy strategy)
strategy - the that controls the keys and valuespublic Double2BooleanLinkedOpenCustomHashMap customLinkedMap(DoubleStrategy strategy)
strategy - the that controls the keys and valuespublic Double2BooleanConcurrentOpenHashMap concurrentMap()
public Double2BooleanArrayMap arrayMap()
public Double2BooleanRBTreeMap rbTreeMap()
public Double2BooleanRBTreeMap rbTreeMap(DoubleComparator comp)
comp - the Comparator that sorts the Treepublic Double2BooleanAVLTreeMap avlTreeMap()
public Double2BooleanAVLTreeMap avlTreeMap(DoubleComparator comp)
comp - the Comparator that sorts the Tree