Interface ImmutableByteBooleanMapFactory
- All Known Implementing Classes:
ImmutableByteBooleanMapFactoryImpl
public interface ImmutableByteBooleanMapFactory
A factory which creates instances of type
ImmutableByteBooleanMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
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 Details
-
empty
ImmutableByteBooleanMap empty()- Since:
- 6.0
-
of
Same asempty(). -
with
ImmutableByteBooleanMap with()Same asempty(). -
of
Same aswith(byte, boolean). -
with
-
ofAll
Same aswithAll(ByteBooleanMap). -
withAll
-
from
<T> ImmutableByteBooleanMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableByteBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-