Interface ImmutableByteBooleanMapFactory
-
- All Known Implementing Classes:
ImmutableByteBooleanMapFactoryImpl
public interface ImmutableByteBooleanMapFactory
A factory which creates instances of typeImmutableByteBooleanMap
. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableByteBooleanMap
empty()
<T> ImmutableByteBooleanMap
from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableByteBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableByteBooleanMap
of()
Same asempty()
.ImmutableByteBooleanMap
of(byte key, boolean value)
Same aswith(byte, boolean)
.ImmutableByteBooleanMap
ofAll(ByteBooleanMap map)
Same aswithAll(ByteBooleanMap)
.ImmutableByteBooleanMap
with()
Same asempty()
.ImmutableByteBooleanMap
with(byte key, boolean value)
ImmutableByteBooleanMap
withAll(ByteBooleanMap map)
-
-
-
Method Detail
-
empty
ImmutableByteBooleanMap empty()
- Since:
- 6.0
-
of
ImmutableByteBooleanMap of()
Same asempty()
.
-
with
ImmutableByteBooleanMap with()
Same asempty()
.
-
of
ImmutableByteBooleanMap of(byte key, boolean value)
Same aswith(byte, boolean)
.
-
with
ImmutableByteBooleanMap with(byte key, boolean value)
-
ofAll
ImmutableByteBooleanMap ofAll(ByteBooleanMap map)
Same aswithAll(ByteBooleanMap)
.
-
withAll
ImmutableByteBooleanMap withAll(ByteBooleanMap map)
-
from
<T> ImmutableByteBooleanMap from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableByteBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-