Package | Description |
---|---|
com.google.common.collect |
This package contains generic collection interfaces and implementations, and other utilities for
working with collections.
|
Modifier and Type | Method and Description |
---|---|
ImmutableBiMap<K,V> |
ImmutableBiMap.Builder.build()
Returns a newly-created immutable bimap.
|
static <K,V> ImmutableBiMap<K,V> |
ImmutableBiMap.copyOf(Iterable<? extends Map.Entry<? extends K,? extends V>> entries)
Returns an immutable bimap containing the given entries.
|
static <K,V> ImmutableBiMap<K,V> |
ImmutableBiMap.copyOf(Map<? extends K,? extends V> map)
Returns an immutable bimap containing the same entries as
map . |
abstract ImmutableBiMap<V,K> |
ImmutableBiMap.inverse()
Returns the inverse view of this bimap, which maps each of this bimap's values to its
associated key.
|
static <K,V> ImmutableBiMap<K,V> |
ImmutableBiMap.of()
Returns the empty bimap.
|
static <K,V> ImmutableBiMap<K,V> |
ImmutableBiMap.of(K k1,
V v1)
Returns an immutable bimap containing a single entry.
|
static <K,V> ImmutableBiMap<K,V> |
ImmutableBiMap.of(K k1,
V v1,
K k2,
V v2)
Returns an immutable map containing the given entries, in order.
|
static <K,V> ImmutableBiMap<K,V> |
ImmutableBiMap.of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3)
Returns an immutable map containing the given entries, in order.
|
static <K,V> ImmutableBiMap<K,V> |
ImmutableBiMap.of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4)
Returns an immutable map containing the given entries, in order.
|
static <K,V> ImmutableBiMap<K,V> |
ImmutableBiMap.of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4,
K k5,
V v5)
Returns an immutable map containing the given entries, in order.
|
Modifier and Type | Method and Description |
---|---|
static <T,K,V> Collector<T,?,ImmutableBiMap<K,V>> |
ImmutableBiMap.toImmutableBiMap(Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction)
Returns a
Collector that accumulates elements into an ImmutableBiMap whose keys
and values are the result of applying the provided mapping functions to the input elements. |
Copyright © 2010–2019. All rights reserved.