Package com.google.common.collect
Class HashBiMap.BiEntry<K,V>
- java.lang.Object
-
- com.google.common.collect.AbstractMapEntry<K,V>
-
- com.google.common.collect.ImmutableEntry<K,V>
-
- com.google.common.collect.HashBiMap.BiEntry<K,V>
-
- All Implemented Interfaces:
java.io.Serializable,java.util.Map.Entry<K,V>
private static final class HashBiMap.BiEntry<K,V> extends ImmutableEntry<K,V>
-
-
Field Summary
Fields Modifier and Type Field Description (package private) intkeyHash(package private) HashBiMap.BiEntry<K,V>nextInKeyInsertionOrder(package private) HashBiMap.BiEntry<K,V>nextInKToVBucket(package private) HashBiMap.BiEntry<K,V>nextInVToKBucket(package private) HashBiMap.BiEntry<K,V>prevInKeyInsertionOrder(package private) intvalueHash-
Fields inherited from class com.google.common.collect.ImmutableEntry
key, value
-
-
Method Summary
-
Methods inherited from class com.google.common.collect.ImmutableEntry
getKey, getValue, setValue
-
Methods inherited from class com.google.common.collect.AbstractMapEntry
equals, hashCode, toString
-
-
-
-
Field Detail
-
keyHash
final int keyHash
-
valueHash
final int valueHash
-
nextInKToVBucket
HashBiMap.BiEntry<K,V> nextInKToVBucket
-
nextInVToKBucket
HashBiMap.BiEntry<K,V> nextInVToKBucket
-
nextInKeyInsertionOrder
HashBiMap.BiEntry<K,V> nextInKeyInsertionOrder
-
prevInKeyInsertionOrder
HashBiMap.BiEntry<K,V> prevInKeyInsertionOrder
-
-