public static class ImmutableOpenIntMap.Builder<VType> extends Object
| Constructor and Description |
|---|
Builder()
|
Builder(ImmutableOpenIntMap
|
Builder(int size)
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableOpenIntMap |
build()
Builds a new instance of the
|
void |
clear()
|
boolean |
containsKey(int key)
|
<T extends <any> |
forEach(T procedure)
|
ImmutableOpenIntMap |
fPut(int key, VType value)
A put operation that can be used in the fluent pattern.
|
ImmutableOpenIntMap |
fRemove(int key)
Remove that can be used in the fluent pattern.
|
VType |
get(int key)
|
VType |
getOrDefault(int kType, VType vType)
|
boolean |
isEmpty()
|
Iterator |
iterator()
|
IntCollection |
keys()
|
VType |
put(int key, VType value)
|
int |
putAll(<any> container)
|
ImmutableOpenIntMap |
putAll(Map
Puts all the entries in the map to the builder.
|
VType |
remove(int key)
|
int |
removeAll(IntContainer container)
|
int |
removeAll(IntPredicate predicate)
|
int |
size()
|
<any> |
values()
|
public Builder()
public Builder(int size)
public Builder(ImmutableOpenIntMap<VType> map)
public ImmutableOpenIntMap<VType> build()
public ImmutableOpenIntMap.Builder <VType> putAll(Map <Integer ,VType> map)
public ImmutableOpenIntMap.Builder <VType> fPut(int key, VType value)
public VType get(int key)
public ImmutableOpenIntMap.Builder <VType> fRemove(int key)
public VType remove(int key)
public Iterator<<any> > iterator()
public boolean containsKey(int key)
public int size()
public boolean isEmpty()
public void clear()
public int putAll(<any> container)
public int removeAll(IntContainer container)
public int removeAll(IntPredicate predicate)
public <T extends <any>> T forEach(T procedure)
public IntCollection keys()
public <any> values()