public interface MutableIntBooleanMapFactory
MutableIntBooleanMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.| Modifier and Type | Method and Description |
|---|---|
MutableIntBooleanMap |
empty() |
<T> MutableIntBooleanMap |
from(Iterable<T> iterable,
IntFunction<? super T> keyFunction,
BooleanFunction<? super T> valueFunction)
Creates an
MutableIntBooleanMap from an Iterable<T> by applying keyFunction and valueFunction. |
MutableIntBooleanMap |
of()
Same as
empty(). |
default MutableIntBooleanMap |
of(int key,
boolean value) |
default MutableIntBooleanMap |
of(int key1,
boolean value1,
int key2,
boolean value2) |
default MutableIntBooleanMap |
of(int key1,
boolean value1,
int key2,
boolean value2,
int key3,
boolean value3) |
default MutableIntBooleanMap |
of(int key1,
boolean value1,
int key2,
boolean value2,
int key3,
boolean value3,
int key4,
boolean value4) |
MutableIntBooleanMap |
ofAll(IntBooleanMap map)
Same as
withAll(IntBooleanMap). |
MutableIntBooleanMap |
ofInitialCapacity(int capacity)
Same as
empty(). |
MutableIntBooleanMap |
with()
Same as
empty(). |
default MutableIntBooleanMap |
with(int key,
boolean value) |
default MutableIntBooleanMap |
with(int key1,
boolean value1,
int key2,
boolean value2) |
default MutableIntBooleanMap |
with(int key1,
boolean value1,
int key2,
boolean value2,
int key3,
boolean value3) |
default MutableIntBooleanMap |
with(int key1,
boolean value1,
int key2,
boolean value2,
int key3,
boolean value3,
int key4,
boolean value4) |
MutableIntBooleanMap |
withAll(IntBooleanMap map) |
MutableIntBooleanMap |
withInitialCapacity(int capacity)
Same as
empty(). |
MutableIntBooleanMap empty()
MutableIntBooleanMap of()
empty().MutableIntBooleanMap with()
empty().default MutableIntBooleanMap of(int key, boolean value)
default MutableIntBooleanMap with(int key, boolean value)
default MutableIntBooleanMap of(int key1, boolean value1, int key2, boolean value2)
default MutableIntBooleanMap with(int key1, boolean value1, int key2, boolean value2)
default MutableIntBooleanMap of(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3)
default MutableIntBooleanMap with(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3)
default MutableIntBooleanMap of(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3, int key4, boolean value4)
default MutableIntBooleanMap with(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3, int key4, boolean value4)
MutableIntBooleanMap ofInitialCapacity(int capacity)
empty(). but takes in an initial capacityMutableIntBooleanMap withInitialCapacity(int capacity)
empty(). but takes in an initial capacityMutableIntBooleanMap ofAll(IntBooleanMap map)
withAll(IntBooleanMap).MutableIntBooleanMap withAll(IntBooleanMap map)
<T> MutableIntBooleanMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
MutableIntBooleanMap from an Iterable<T> by applying keyFunction and valueFunction.Copyright © 2004–2022. All rights reserved.