Java com.google.common.collect ImmutableBiMap fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.collect ImmutableBiMap fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.collect ImmutableBiMap.

The text is from its open source code.

Method

Builderbuilder()
booleancontainsKey(Object key)
Returns true if this map contains a mapping for the specified key.
booleancontainsValue(Object value)
Returns true if this map maps one or more keys to the specified value.
ImmutableBiMapcopyOf(Map map)
ImmutableBiMapcopyOf(Iterable> entries)
Set>entrySet()
Returns a Set view of the mappings contained in this map.
voidforEach(BiConsumer action)
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
Vget(Object key)
Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
ImmutableBiMapinverse()
booleanisEmpty()
Returns true if this map contains no key-value mappings.
SetkeySet()
Returns a Set view of the keys contained in this map.
ImmutableBiMapof()
ImmutableBiMapof(K k1, V v1, K k2, V v2)
ImmutableBiMapof(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4)
ImmutableBiMapof(K k1, V v1)
ImmutableBiMapof(K k1, V v1, K k2, V v2, K k3, V v3)
ImmutableSetvalues()