public static class Char2BooleanMap.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 |
|---|---|
Char2BooleanArrayMap |
arrayMap()
Builds the Keys and Values into a Array Map
|
Char2BooleanAVLTreeMap |
avlTreeMap()
Builds the Keys and Values into a AVL TreeMap
|
Char2BooleanAVLTreeMap |
avlTreeMap(CharComparator comp)
Builds the Keys and Values into a AVL TreeMap
|
Char2BooleanConcurrentOpenHashMap |
concurrentMap()
Builds the Keys and Values into a Concurrent Hash Map
|
Char2BooleanLinkedOpenCustomHashMap |
customLinkedMap(CharStrategy strategy)
Builds the Keys and Values into a Linked Custom Hash Map
|
Char2BooleanOpenCustomHashMap |
customMap(CharStrategy strategy)
Builds the Keys and Values into a Custom Hash Map
|
ImmutableChar2BooleanOpenHashMap |
immutable()
Builds the Keys and Values into a Immutable Hash Map
|
Char2BooleanLinkedOpenHashMap |
linkedMap()
Builds the Keys and Values into a Linked Hash Map
|
Char2BooleanOpenHashMap |
map()
Builds the Keys and Values into a Hash Map
|
Char2BooleanMap.BuilderCache |
put(Char2BooleanMap.Entry entry)
Helper function to add a Entry into the Map
|
Char2BooleanMap.BuilderCache |
put(java.lang.Character key,
java.lang.Boolean value)
Helper function to add a Entry into the Map
|
Char2BooleanMap.BuilderCache |
put(char key,
boolean value)
Helper function to add a Entry into the Map
|
Char2BooleanMap.BuilderCache |
putAll(Char2BooleanMap map)
Helper function to add a Map to the Map
|
Char2BooleanMap.BuilderCache |
putAll(java.util.Map<? extends java.lang.Character,? extends java.lang.Boolean> map)
Helper function to add a Map to the Map
|
Char2BooleanMap.BuilderCache |
putAll(ObjectIterable<Char2BooleanMap.Entry> c)
Helper function to add a Collection of Entries to the Map
|
Char2BooleanRBTreeMap |
rbTreeMap()
Builds the Keys and Values into a RedBlack TreeMap
|
Char2BooleanRBTreeMap |
rbTreeMap(CharComparator comp)
Builds the Keys and Values into a RedBlack TreeMap
|
public BuilderCache()
public BuilderCache(int initialSize)
initialSize - the requested start capacitypublic Char2BooleanMap.BuilderCache put(char key, boolean value)
key - the key that should be addedvalue - the value that should be addedpublic Char2BooleanMap.BuilderCache put(java.lang.Character key, java.lang.Boolean value)
key - the key that should be addedvalue - the value that should be addedpublic Char2BooleanMap.BuilderCache put(Char2BooleanMap.Entry entry)
entry - the Entry that should be addedpublic Char2BooleanMap.BuilderCache putAll(Char2BooleanMap map)
map - that should be addedpublic Char2BooleanMap.BuilderCache putAll(java.util.Map<? extends java.lang.Character,? extends java.lang.Boolean> map)
map - that should be addedpublic Char2BooleanMap.BuilderCache putAll(ObjectIterable<Char2BooleanMap.Entry> c)
c - that should be addedpublic Char2BooleanOpenHashMap map()
public Char2BooleanLinkedOpenHashMap linkedMap()
public ImmutableChar2BooleanOpenHashMap immutable()
public Char2BooleanOpenCustomHashMap customMap(CharStrategy strategy)
strategy - the that controls the keys and valuespublic Char2BooleanLinkedOpenCustomHashMap customLinkedMap(CharStrategy strategy)
strategy - the that controls the keys and valuespublic Char2BooleanConcurrentOpenHashMap concurrentMap()
public Char2BooleanArrayMap arrayMap()
public Char2BooleanRBTreeMap rbTreeMap()
public Char2BooleanRBTreeMap rbTreeMap(CharComparator comp)
comp - the Comparator that sorts the Treepublic Char2BooleanAVLTreeMap avlTreeMap()
public Char2BooleanAVLTreeMap avlTreeMap(CharComparator comp)
comp - the Comparator that sorts the Tree