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