Uses of Class
org.apache.commons.collections4.list.AbstractLinkedListJava21.Node
-
Packages that use AbstractLinkedListJava21.Node Package Description org.apache.commons.collections4.list Implements theListinterface. -
-
Uses of AbstractLinkedListJava21.Node in org.apache.commons.collections4.list
Fields in org.apache.commons.collections4.list declared as AbstractLinkedListJava21.Node Modifier and Type Field Description protected AbstractLinkedListJava21.Node<E>AbstractLinkedListJava21.LinkedListIterator. currentThe last node that was returned byAbstractLinkedListJava21.LinkedListIterator.next()orAbstractLinkedListJava21.LinkedListIterator.previous().protected AbstractLinkedListJava21.Node<E>AbstractLinkedListJava21.LinkedListIterator. nextThe node that will be returned byAbstractLinkedListJava21.LinkedListIterator.next().protected AbstractLinkedListJava21.Node<E>AbstractLinkedListJava21.Node. nextA pointer to the node after this nodeprotected AbstractLinkedListJava21.Node<E>AbstractLinkedListJava21.Node. previousA pointer to the node before this nodeMethods in org.apache.commons.collections4.list that return AbstractLinkedListJava21.Node Modifier and Type Method Description protected AbstractLinkedListJava21.Node<E>AbstractLinkedListJava21. createHeaderNode()Creates a new node with previous, next and element all set to null.protected AbstractLinkedListJava21.Node<E>AbstractLinkedListJava21. createNode(E value)Creates a new node with the specified properties.protected AbstractLinkedListJava21.Node<E>AbstractLinkedListJava21.LinkedListIterator. getLastNodeReturned()Gets the last node returned.protected AbstractLinkedListJava21.Node<E>AbstractLinkedListJava21.Node. getNextNode()Gets the next node.protected AbstractLinkedListJava21.Node<E>AbstractLinkedListJava21. getNode(int index, boolean endMarkerAllowed)Gets the node at a particular index.protected AbstractLinkedListJava21.Node<E>AbstractLinkedListJava21.Node. getPreviousNode()Gets the previous node.Methods in org.apache.commons.collections4.list with parameters of type AbstractLinkedListJava21.Node Modifier and Type Method Description protected voidAbstractLinkedListJava21. addNode(AbstractLinkedListJava21.Node<E> nodeToInsert, AbstractLinkedListJava21.Node<E> insertBeforeNode)Inserts a new node into the list.protected voidAbstractLinkedListJava21. addNodeAfter(AbstractLinkedListJava21.Node<E> node, E value)Creates a new node with the specified object as itsvalueand inserts it afternode.protected voidAbstractLinkedListJava21. addNodeBefore(AbstractLinkedListJava21.Node<E> node, E value)Creates a new node with the specified object as itsvalueand inserts it beforenode.protected voidAbstractLinkedListJava21. removeNode(AbstractLinkedListJava21.Node<E> node)Removes the specified node from the list.protected voidAbstractLinkedListJava21.Node. setNextNode(AbstractLinkedListJava21.Node<E> next)Sets the next node.protected voidAbstractLinkedListJava21.Node. setPreviousNode(AbstractLinkedListJava21.Node<E> previous)Sets the previous node.protected voidAbstractLinkedListJava21. updateNode(AbstractLinkedListJava21.Node<E> node, E value)Updates the node with a new value.Constructors in org.apache.commons.collections4.list with parameters of type AbstractLinkedListJava21.Node Constructor Description Node(AbstractLinkedListJava21.Node<E> previous, AbstractLinkedListJava21.Node<E> next, E value)Constructs a new node.
-