@Immutable
public final class ImmutableMapFactoryImpl
extends java.lang.Object
implements com.gs.collections.api.factory.map.ImmutableMapFactory
| Constructor and Description |
|---|
ImmutableMapFactoryImpl() |
| Modifier and Type | Method and Description |
|---|---|
<K,V> com.gs.collections.api.map.ImmutableMap<K,V> |
of()
Same as
ImmutableMapFactory.with(). |
<K,V> com.gs.collections.api.map.ImmutableMap<K,V> |
of(K key,
V value)
Same as
ImmutableMapFactory.with(Object, Object). |
<K,V> com.gs.collections.api.map.ImmutableMap<K,V> |
of(K key1,
V value1,
K key2,
V value2)
Same as
ImmutableMapFactory.with(Object, Object, Object, Object). |
<K,V> com.gs.collections.api.map.ImmutableMap<K,V> |
of(K key1,
V value1,
K key2,
V value2,
K key3,
V value3)
Same as
ImmutableMapFactory.with(Object, Object, Object, Object, Object, Object). |
<K,V> com.gs.collections.api.map.ImmutableMap<K,V> |
of(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4)
Same as
ImmutableMapFactory.with(Object, Object, Object, Object, Object, Object, Object, Object). |
<K,V> com.gs.collections.api.map.ImmutableMap<K,V> |
ofAll(java.util.Map<K,V> map)
Same as
ImmutableMapFactory.withAll(java.util.Map). |
<K,V> com.gs.collections.api.map.ImmutableMap<K,V> |
ofMap(java.util.Map<K,V> map)
Deprecated.
use
ofAll(Map) instead (inlineable) |
<K,V> com.gs.collections.api.map.ImmutableMap<K,V> |
with() |
<K,V> com.gs.collections.api.map.ImmutableMap<K,V> |
with(K key,
V value) |
<K,V> com.gs.collections.api.map.ImmutableMap<K,V> |
with(K key1,
V value1,
K key2,
V value2) |
<K,V> com.gs.collections.api.map.ImmutableMap<K,V> |
with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
<K,V> com.gs.collections.api.map.ImmutableMap<K,V> |
with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
<K,V> com.gs.collections.api.map.ImmutableMap<K,V> |
withAll(java.util.Map<K,V> map) |
public <K,V> com.gs.collections.api.map.ImmutableMap<K,V> of()
com.gs.collections.api.factory.map.ImmutableMapFactoryImmutableMapFactory.with().of in interface com.gs.collections.api.factory.map.ImmutableMapFactorypublic <K,V> com.gs.collections.api.map.ImmutableMap<K,V> with()
with in interface com.gs.collections.api.factory.map.ImmutableMapFactorypublic <K,V> com.gs.collections.api.map.ImmutableMap<K,V> of(K key,
V value)
com.gs.collections.api.factory.map.ImmutableMapFactoryImmutableMapFactory.with(Object, Object).of in interface com.gs.collections.api.factory.map.ImmutableMapFactorypublic <K,V> com.gs.collections.api.map.ImmutableMap<K,V> with(K key,
V value)
with in interface com.gs.collections.api.factory.map.ImmutableMapFactorypublic <K,V> com.gs.collections.api.map.ImmutableMap<K,V> of(K key1,
V value1,
K key2,
V value2)
com.gs.collections.api.factory.map.ImmutableMapFactoryImmutableMapFactory.with(Object, Object, Object, Object).of in interface com.gs.collections.api.factory.map.ImmutableMapFactorypublic <K,V> com.gs.collections.api.map.ImmutableMap<K,V> with(K key1,
V value1,
K key2,
V value2)
with in interface com.gs.collections.api.factory.map.ImmutableMapFactorypublic <K,V> com.gs.collections.api.map.ImmutableMap<K,V> of(K key1,
V value1,
K key2,
V value2,
K key3,
V value3)
com.gs.collections.api.factory.map.ImmutableMapFactoryImmutableMapFactory.with(Object, Object, Object, Object, Object, Object).of in interface com.gs.collections.api.factory.map.ImmutableMapFactorypublic <K,V> com.gs.collections.api.map.ImmutableMap<K,V> with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3)
with in interface com.gs.collections.api.factory.map.ImmutableMapFactorypublic <K,V> com.gs.collections.api.map.ImmutableMap<K,V> of(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4)
com.gs.collections.api.factory.map.ImmutableMapFactoryImmutableMapFactory.with(Object, Object, Object, Object, Object, Object, Object, Object).of in interface com.gs.collections.api.factory.map.ImmutableMapFactorypublic <K,V> com.gs.collections.api.map.ImmutableMap<K,V> with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4)
with in interface com.gs.collections.api.factory.map.ImmutableMapFactory@Deprecated public <K,V> com.gs.collections.api.map.ImmutableMap<K,V> ofMap(java.util.Map<K,V> map)
ofAll(Map) instead (inlineable)ofMap in interface com.gs.collections.api.factory.map.ImmutableMapFactorypublic <K,V> com.gs.collections.api.map.ImmutableMap<K,V> ofAll(java.util.Map<K,V> map)
com.gs.collections.api.factory.map.ImmutableMapFactoryImmutableMapFactory.withAll(java.util.Map).ofAll in interface com.gs.collections.api.factory.map.ImmutableMapFactorypublic <K,V> com.gs.collections.api.map.ImmutableMap<K,V> withAll(java.util.Map<K,V> map)
withAll in interface com.gs.collections.api.factory.map.ImmutableMapFactory