Interface ImmutableByteObjectMapFactory
-
public interface ImmutableByteObjectMapFactoryA factory which creates instances of typeImmutableByteObjectMap. This file was automatically generated from template file immutablePrimitiveObjectMapFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <V> ImmutableByteObjectMap<V>empty()<T,V>
ImmutableByteObjectMap<V>from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)Creates anImmutableByteObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<V> ImmutableByteObjectMap<V>of()Same asempty().<V> ImmutableByteObjectMap<V>of(byte key, V value)Same aswith(byte, Object).<V> ImmutableByteObjectMap<V>ofAll(ByteObjectMap<? extends V> map)Same aswithAll(ByteObjectMap).<V> ImmutableByteObjectMap<V>with()Same asempty().<V> ImmutableByteObjectMap<V>with(byte key, V value)<V> ImmutableByteObjectMap<V>withAll(ByteObjectMap<? extends V> map)
-
-
-
Method Detail
-
empty
<V> ImmutableByteObjectMap<V> empty()
- Since:
- 6.0
-
of
<V> ImmutableByteObjectMap<V> of()
Same asempty().
-
with
<V> ImmutableByteObjectMap<V> with()
Same asempty().
-
of
<V> ImmutableByteObjectMap<V> of(byte key, V value)
Same aswith(byte, Object).
-
with
<V> ImmutableByteObjectMap<V> with(byte key, V value)
-
ofAll
<V> ImmutableByteObjectMap<V> ofAll(ByteObjectMap<? extends V> map)
Same aswithAll(ByteObjectMap).
-
withAll
<V> ImmutableByteObjectMap<V> withAll(ByteObjectMap<? extends V> map)
-
from
<T,V> ImmutableByteObjectMap<V> from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anImmutableByteObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-