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 ImmutableByteBooleanMap
empty()
<T> ImmutableByteBooleanMap
from(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 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 anImmutableByteBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-