Searched defs:bimap (Results 1 - 3 of 3) sorted by relevance

/external/guava/src/com/google/common/collect/
H A DImmutableBiMap.java33 * make a "defensive copy" of a bimap provided to your class by a caller.
50 * Returns the empty bimap.
59 * Returns an immutable bimap containing a single entry.
118 * A builder for creating immutable bimap instances, especially {@code public
132 * multiple times to build multiple bimaps in series. Each bimap is a superset
144 * Associates {@code key} with {@code value} in the built bimap. Duplicate
153 * Associates all of the given map's keys and values in the built bimap.
165 * Returns a newly-created immutable bimap.
179 * Returns an immutable bimap containing the same entries as {@code map}. If
194 ImmutableBiMap<K, V> bimap
299 SerializedForm(ImmutableBiMap<?, ?> bimap) argument
[all...]
H A DSynchronized.java1221 * Returns a synchronized (thread-safe) bimap backed by the specified bimap
1223 * critical that <b>all</b> access to the backing bimap is accomplished
1224 * through the returned bimap.
1227 * mutex when accessing any of the return bimap's collection views:
1244 * @param bimap the bimap to be wrapped in a synchronized view
1245 * @return a synchronized view of the specified bimap
1248 BiMap<K, V> bimap, @Nullable Object mutex) {
1249 return new SynchronizedBiMap<K, V>(bimap, mute
1247 biMap( BiMap<K, V> bimap, @Nullable Object mutex) argument
[all...]
H A DMaps.java243 * Returns a synchronized (thread-safe) bimap backed by the specified bimap.
245 * to the backing bimap is accomplished through the returned bimap.
264 * <p>The returned bimap will be serializable if the specified bimap is
267 * @param bimap the bimap to be wrapped in a synchronized view
268 * @return a sychronized view of the specified bimap
270 public static <K, V> BiMap<K, V> synchronizedBiMap(BiMap<K, V> bimap) { argument
613 unmodifiableBiMap( BiMap<? extends K, ? extends V> bimap) argument
[all...]

Completed in 636 milliseconds