Interface MutableByteBooleanMapFactory
- All Known Implementing Classes:
MutableByteBooleanMapFactoryImpl
public interface MutableByteBooleanMapFactory
A factory which creates instances of type
MutableByteBooleanMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableByteBooleanMapempty()<T> MutableByteBooleanMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableByteBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteBooleanMapof()Same asempty().MutableByteBooleanMapofAll(ByteBooleanMap map)Same aswithAll(ByteBooleanMap).MutableByteBooleanMapofInitialCapacity(int capacity)Same asempty().MutableByteBooleanMapwith()Same asempty().MutableByteBooleanMapwithAll(ByteBooleanMap map)MutableByteBooleanMapwithInitialCapacity(int capacity)Same asempty().
-
Method Details
-
empty
MutableByteBooleanMap empty() -
of
Same asempty(). -
with
MutableByteBooleanMap with()Same asempty(). -
ofInitialCapacity
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(ByteBooleanMap). -
withAll
-
from
<T> MutableByteBooleanMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableByteBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-