HomeSort by relevance Sort by last modified time
    Searched defs:RegularImmutableBiMap (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
RegularImmutableBiMap.java 20 * GWT emulation of {@link RegularImmutableBiMap}.
26 class RegularImmutableBiMap<K, V> extends ImmutableBiMap<K, V> {
32 RegularImmutableBiMap(ImmutableMap<K, V> delegate) {
40 this.inverse = new RegularImmutableBiMap<V, K>(backwardMap, this);
43 RegularImmutableBiMap(ImmutableMap<K, V> delegate,
  /external/guava/guava/src/com/google/common/collect/
RegularImmutableBiMap.java 35 class RegularImmutableBiMap<K, V> extends ImmutableBiMap<K, V> {
45 RegularImmutableBiMap(TerminalEntry<?, ?>... entriesToAdd) {
50 * Constructor for RegularImmutableBiMap that takes as input an array of {@code TerminalEntry}
55 RegularImmutableBiMap(int n, TerminalEntry<?, ?>[] entriesToAdd) {
101 * Constructor for RegularImmutableBiMap that makes no assumptions about the input entries.
103 RegularImmutableBiMap(Entry<?, ?>[] entriesToAdd) {
207 return RegularImmutableBiMap.this;
259 return RegularImmutableBiMap.this;
327 return new InverseSerializedForm<K, V>(RegularImmutableBiMap.this);