Interface ImmutableObjectByteMapFactory
-
- All Known Implementing Classes:
ImmutableObjectByteMapFactoryImpl
public interface ImmutableObjectByteMapFactory
A factory which creates instances of typeImmutableObjectByteMap
. This file was automatically generated from template file immutableObjectPrimitiveMapFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <K> ImmutableObjectByteMap<K>
empty()
<T,K>
ImmutableObjectByteMap<K>from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableObjectByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<K> ImmutableObjectByteMap<K>
of()
Same asempty()
.<K> ImmutableObjectByteMap<K>
of(K key, byte value)
Same aswith(Object, byte)
.<K> ImmutableObjectByteMap<K>
ofAll(ObjectByteMap<? extends K> map)
Same aswithAll(ObjectByteMap)
.<K> ImmutableObjectByteMap<K>
with()
Same asempty()
.<K> ImmutableObjectByteMap<K>
with(K key, byte value)
<K> ImmutableObjectByteMap<K>
withAll(ObjectByteMap<? extends K> map)
-
-
-
Method Detail
-
empty
<K> ImmutableObjectByteMap<K> empty()
- Since:
- 6.0
-
of
<K> ImmutableObjectByteMap<K> of()
Same asempty()
.
-
with
<K> ImmutableObjectByteMap<K> with()
Same asempty()
.
-
of
<K> ImmutableObjectByteMap<K> of(K key, byte value)
Same aswith(Object, byte)
.
-
with
<K> ImmutableObjectByteMap<K> with(K key, byte value)
-
ofAll
<K> ImmutableObjectByteMap<K> ofAll(ObjectByteMap<? extends K> map)
Same aswithAll(ObjectByteMap)
.
-
withAll
<K> ImmutableObjectByteMap<K> withAll(ObjectByteMap<? extends K> map)
-
from
<T,K> ImmutableObjectByteMap<K> from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableObjectByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-