Interface MutableBiMapFactory
-
- All Known Implementing Classes:
MutableBiMapFactoryImpl
public interface MutableBiMapFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <K,V>
MutableBiMap<K,V>empty()
<K,V>
MutableBiMap<K,V>of()
Same asempty()
.<K,V>
MutableBiMap<K,V>of(K key, V value)
Same aswith(Object, Object)
.<K,V>
MutableBiMap<K,V>of(K key1, V value1, K key2, V value2)
Same aswith(Object, Object, Object, Object)
.<K,V>
MutableBiMap<K,V>of(K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
MutableBiMap<K,V>of(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
<K,V>
MutableBiMap<K,V>with()
Same asempty()
.<K,V>
MutableBiMap<K,V>with(K key, V value)
<K,V>
MutableBiMap<K,V>with(K key1, V value1, K key2, V value2)
<K,V>
MutableBiMap<K,V>with(K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
MutableBiMap<K,V>with(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
-
-
-
Method Detail
-
empty
<K,V> MutableBiMap<K,V> empty()
- Since:
- 6.0
-
of
<K,V> MutableBiMap<K,V> of()
Same asempty()
.
-
with
<K,V> MutableBiMap<K,V> with()
Same asempty()
.
-
of
<K,V> MutableBiMap<K,V> of(K key, V value)
Same aswith(Object, Object)
.
-
with
<K,V> MutableBiMap<K,V> with(K key, V value)
-
of
<K,V> MutableBiMap<K,V> of(K key1, V value1, K key2, V value2)
Same aswith(Object, Object, Object, Object)
.
-
with
<K,V> MutableBiMap<K,V> with(K key1, V value1, K key2, V value2)
-
of
<K,V> MutableBiMap<K,V> of(K key1, V value1, K key2, V value2, K key3, V value3)
-
with
<K,V> MutableBiMap<K,V> with(K key1, V value1, K key2, V value2, K key3, V value3)
-
of
<K,V> MutableBiMap<K,V> of(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
-
with
<K,V> MutableBiMap<K,V> with(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
-
-