| static <K,V>ImmutableBiMap.Builder<K,V>
 | ImmutableBiMap. builder() | Returns a new builder. | 
| static <K,V>ImmutableBiMap.Builder<K,V>
 | ImmutableBiMap. builderWithExpectedSize(int expectedSize) | Returns a new builder, expecting the specified number of entries to be added. | 
| ImmutableBiMap.Builder<K,V> | ImmutableBiMap.Builder. orderEntriesByValue(java.util.Comparator<? super V> valueComparator) | Configures this Builderto order entries by value according to the specified
 comparator. | 
| ImmutableBiMap.Builder<K,V> | ImmutableBiMap.Builder. put(java.util.Map.Entry<? extends K,? extends V> entry) | Adds the given entryto the bimap. | 
| ImmutableBiMap.Builder<K,V> | ImmutableBiMap.Builder. put(K key,
   V value) | Associates keywithvaluein the built bimap. | 
| ImmutableBiMap.Builder<K,V> | ImmutableBiMap.Builder. putAll(java.lang.Iterable<? extends java.util.Map.Entry<? extends K,? extends V>> entries) | Adds all of the given entries to the built bimap. | 
| ImmutableBiMap.Builder<K,V> | ImmutableBiMap.Builder. putAll(java.util.Map<? extends K,? extends V> map) | Associates all of the given map's keys and values in the built bimap. |