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) int
keyHash
(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) int
valueHash
-
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
@CheckForNull HashBiMap.BiEntry<K,V> nextInKToVBucket
-
nextInVToKBucket
@CheckForNull HashBiMap.BiEntry<K,V> nextInVToKBucket
-
nextInKeyInsertionOrder
@CheckForNull HashBiMap.BiEntry<K,V> nextInKeyInsertionOrder
-
prevInKeyInsertionOrder
@CheckForNull HashBiMap.BiEntry<K,V> prevInKeyInsertionOrder
-
-