Uses of Class
com.google.common.collect.LinkedListMultimap.Node
-
Packages that use LinkedListMultimap.Node Package Description com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections. -
-
Uses of LinkedListMultimap.Node in com.google.common.collect
Fields in com.google.common.collect declared as LinkedListMultimap.Node Modifier and Type Field Description (package private) LinkedListMultimap.Node<K,V>LinkedListMultimap.DistinctKeyIterator. current(package private) LinkedListMultimap.Node<K,V>LinkedListMultimap.NodeIterator. current(package private) LinkedListMultimap.Node<K,V>LinkedListMultimap.ValueForKeyIterator. currentprivate LinkedListMultimap.Node<K,V>LinkedListMultimap. head(package private) LinkedListMultimap.Node<K,V>LinkedListMultimap.KeyList. head(package private) LinkedListMultimap.Node<K,V>LinkedListMultimap.DistinctKeyIterator. next(package private) LinkedListMultimap.Node<K,V>LinkedListMultimap.Node. next(package private) LinkedListMultimap.Node<K,V>LinkedListMultimap.NodeIterator. next(package private) LinkedListMultimap.Node<K,V>LinkedListMultimap.ValueForKeyIterator. next(package private) LinkedListMultimap.Node<K,V>LinkedListMultimap.Node. nextSibling(package private) LinkedListMultimap.Node<K,V>LinkedListMultimap.Node. previous(package private) LinkedListMultimap.Node<K,V>LinkedListMultimap.NodeIterator. previous(package private) LinkedListMultimap.Node<K,V>LinkedListMultimap.ValueForKeyIterator. previous(package private) LinkedListMultimap.Node<K,V>LinkedListMultimap.Node. previousSibling(package private) LinkedListMultimap.Node<K,V>LinkedListMultimap.KeyList. tailprivate LinkedListMultimap.Node<K,V>LinkedListMultimap. tailMethods in com.google.common.collect that return LinkedListMultimap.Node Modifier and Type Method Description private LinkedListMultimap.Node<K,V>LinkedListMultimap. addNode(K key, V value, LinkedListMultimap.Node<K,V> nextSibling)Adds a new node for the specified key-value pair before the specifiednextSiblingelement, or at the end of the list ifnextSiblingis null.LinkedListMultimap.Node<K,V>LinkedListMultimap.NodeIterator. next()LinkedListMultimap.Node<K,V>LinkedListMultimap.NodeIterator. previous()Methods in com.google.common.collect with parameters of type LinkedListMultimap.Node Modifier and Type Method Description private LinkedListMultimap.Node<K,V>LinkedListMultimap. addNode(K key, V value, LinkedListMultimap.Node<K,V> nextSibling)Adds a new node for the specified key-value pair before the specifiednextSiblingelement, or at the end of the list ifnextSiblingis null.private voidLinkedListMultimap. removeNode(LinkedListMultimap.Node<K,V> node)Removes the specified node from the linked list.Constructors in com.google.common.collect with parameters of type LinkedListMultimap.Node Constructor Description KeyList(LinkedListMultimap.Node<K,V> firstNode)
-