MCPcopy Create free account
hub / github.com/antlr/codebuff / UnmodifiableBiMap

Method UnmodifiableBiMap

output/java_guava/1.4.17/Maps.java:1564–1568  ·  view source on GitHub ↗
(BiMap<? extends K, ? extends V> delegate, @Nullable BiMap<V, K> inverse)

Source from the content-addressed store, hash-verified

1562 transient Set<V> values;
1563
1564 UnmodifiableBiMap(BiMap<? extends K, ? extends V> delegate, @Nullable BiMap<V, K> inverse) {
1565 unmodifiableMap = Collections.unmodifiableMap(delegate);
1566 this.delegate = delegate;
1567 this.inverse = inverse;
1568 }
1569
1570 @Override
1571 protected Map<K, V> delegate() {

Callers

nothing calls this directly

Calls 1

unmodifiableMapMethod · 0.45

Tested by

no test coverage detected