Interface ImmutableByteBooleanMapFactory
-
public interface ImmutableByteBooleanMapFactoryA 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 ImmutableByteBooleanMapempty()<T> ImmutableByteBooleanMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableByteBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableByteBooleanMapof()Same asempty().ImmutableByteBooleanMapof(byte key, boolean value)Same aswith(byte, boolean).ImmutableByteBooleanMapofAll(ByteBooleanMap map)Same aswithAll(ByteBooleanMap).ImmutableByteBooleanMapwith()Same asempty().ImmutableByteBooleanMapwith(byte key, boolean value)ImmutableByteBooleanMapwithAll(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(Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableByteBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-