Class Multimaps.ImmutableMultimaps.ImmutableListMultimapFactory
- java.lang.Object
-
- org.eclipse.collections.impl.factory.Multimaps.ImmutableMultimaps.ImmutableListMultimapFactory
-
- Enclosing class:
- Multimaps.ImmutableMultimaps
public static final class Multimaps.ImmutableMultimaps.ImmutableListMultimapFactory extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private static ImmutableListMultimap<java.lang.Object,java.lang.Object>
EMPTY
-
Constructor Summary
Constructors Modifier Constructor Description private
ImmutableListMultimapFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <K,V>
ImmutableListMultimap<K,V>empty()
<K,V>
ImmutableListMultimap<K,V>of()
<K,V>
ImmutableListMultimap<K,V>of(K key, V value)
<K,V>
ImmutableListMultimap<K,V>of(K key1, V value1, K key2, V value2)
<K,V>
ImmutableListMultimap<K,V>of(K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
ImmutableListMultimap<K,V>with()
<K,V>
ImmutableListMultimap<K,V>with(K key, V value)
<K,V>
ImmutableListMultimap<K,V>with(K key1, V value1, K key2, V value2)
<K,V>
ImmutableListMultimap<K,V>with(K key1, V value1, K key2, V value2, K key3, V value3)
-
-
-
Field Detail
-
EMPTY
private static final ImmutableListMultimap<java.lang.Object,java.lang.Object> EMPTY
-
-
Method Detail
-
empty
public <K,V> ImmutableListMultimap<K,V> empty()
-
of
public <K,V> ImmutableListMultimap<K,V> of()
-
with
public <K,V> ImmutableListMultimap<K,V> with()
-
of
public <K,V> ImmutableListMultimap<K,V> of(K key, V value)
-
with
public <K,V> ImmutableListMultimap<K,V> with(K key, V value)
-
of
public <K,V> ImmutableListMultimap<K,V> of(K key1, V value1, K key2, V value2)
-
with
public <K,V> ImmutableListMultimap<K,V> with(K key1, V value1, K key2, V value2)
-
of
public <K,V> ImmutableListMultimap<K,V> of(K key1, V value1, K key2, V value2, K key3, V value3)
-
with
public <K,V> ImmutableListMultimap<K,V> with(K key1, V value1, K key2, V value2, K key3, V value3)
-
-