Class LinkedHashMultimap.ValueEntry<K,V>

java.lang.Object
com.google.common.collect.AbstractMapEntry<K,V>
com.google.common.collect.ImmutableEntry<K,V>
com.google.common.collect.LinkedHashMultimap.ValueEntry<K,V>
All Implemented Interfaces:
LinkedHashMultimap.ValueSetLink<K,V>, Serializable, Map.Entry<K,V>
Enclosing class:
LinkedHashMultimap<K,V>

static final class LinkedHashMultimap.ValueEntry<K,V> extends ImmutableEntry<K,V> implements LinkedHashMultimap.ValueSetLink<K,V>
LinkedHashMultimap entries are in no less than three coexisting linked lists: a bucket in the hash table for a Set<V> associated with a key, the linked list of insertion-ordered entries in that Set<V>, and the linked list of entries in the LinkedHashMultimap as a whole.