Uses of Class
org.apache.commons.collections4.list.AbstractLinkedList.Node
-
Packages that use AbstractLinkedList.Node Package Description org.apache.commons.collections4.list This package contains implementations of theListinterface. -
-
Uses of AbstractLinkedList.Node in org.apache.commons.collections4.list
Fields in org.apache.commons.collections4.list declared as AbstractLinkedList.Node Modifier and Type Field Description protected AbstractLinkedList.Node<E>AbstractLinkedList.LinkedListIterator. currentThe last node that was returned byAbstractLinkedList.LinkedListIterator.next()orAbstractLinkedList.LinkedListIterator.previous().(package private) AbstractLinkedList.Node<E>AbstractLinkedList. headerAAbstractLinkedList.Nodewhich indicates the start and end of the list and does not hold a value.protected AbstractLinkedList.Node<E>AbstractLinkedList.LinkedListIterator. nextThe node that will be returned byAbstractLinkedList.LinkedListIterator.next().protected AbstractLinkedList.Node<E>AbstractLinkedList.Node. nextA pointer to the node after this nodeprotected AbstractLinkedList.Node<E>AbstractLinkedList.Node. previousA pointer to the node before this nodeMethods in org.apache.commons.collections4.list that return AbstractLinkedList.Node Modifier and Type Method Description protected AbstractLinkedList.Node<E>AbstractLinkedList. createHeaderNode()Creates a new node with previous, next and element all set to null.protected AbstractLinkedList.Node<E>AbstractLinkedList. createNode(E value)Creates a new node with the specified properties.protected AbstractLinkedList.Node<E>NodeCachingLinkedList. createNode(E value)Creates a new node, either by reusing one from the cache or creating a new one.protected AbstractLinkedList.Node<E>AbstractLinkedList.LinkedListIterator. getLastNodeReturned()Gets the last node returned.protected AbstractLinkedList.Node<E>AbstractLinkedList.Node. getNextNode()Gets the next node.protected AbstractLinkedList.Node<E>AbstractLinkedList. getNode(int index, boolean endMarkerAllowed)Gets the node at a particular index.protected AbstractLinkedList.Node<E>NodeCachingLinkedList. getNodeFromCache()Gets a node from the cache.protected AbstractLinkedList.Node<E>AbstractLinkedList.Node. getPreviousNode()Gets the previous node.Methods in org.apache.commons.collections4.list with parameters of type AbstractLinkedList.Node Modifier and Type Method Description protected voidAbstractLinkedList. addNode(AbstractLinkedList.Node<E> nodeToInsert, AbstractLinkedList.Node<E> insertBeforeNode)Inserts a new node into the list.protected voidCursorableLinkedList. addNode(AbstractLinkedList.Node<E> nodeToInsert, AbstractLinkedList.Node<E> insertBeforeNode)Inserts a new node into the list.protected voidAbstractLinkedList. addNodeAfter(AbstractLinkedList.Node<E> node, E value)Creates a new node with the specified object as itsvalueand inserts it afternode.protected voidAbstractLinkedList. addNodeBefore(AbstractLinkedList.Node<E> node, E value)Creates a new node with the specified object as itsvalueand inserts it beforenode.protected voidNodeCachingLinkedList. addNodeToCache(AbstractLinkedList.Node<E> node)Adds a node to the cache, if the cache isn't full.protected voidCursorableLinkedList. broadcastNodeChanged(AbstractLinkedList.Node<E> node)Informs all of my registered cursors that the specified element was changed.protected voidCursorableLinkedList. broadcastNodeInserted(AbstractLinkedList.Node<E> node)Informs all of my registered cursors that the specified element was just added to my list.protected voidCursorableLinkedList. broadcastNodeRemoved(AbstractLinkedList.Node<E> node)Informs all of my registered cursors that the specified element was just removed from my list.protected voidCursorableLinkedList.Cursor. nodeChanged(AbstractLinkedList.Node<E> node)Handle event from the list when a node has changed.protected voidCursorableLinkedList.Cursor. nodeInserted(AbstractLinkedList.Node<E> node)Handle event from the list when a node has been added.protected voidCursorableLinkedList.Cursor. nodeRemoved(AbstractLinkedList.Node<E> node)Handle event from the list when a node has been removed.protected voidAbstractLinkedList. removeNode(AbstractLinkedList.Node<E> node)Removes the specified node from the list.protected voidCursorableLinkedList. removeNode(AbstractLinkedList.Node<E> node)Removes the specified node from the list.protected voidNodeCachingLinkedList. removeNode(AbstractLinkedList.Node<E> node)Removes the node from the list, storing it in the cache for reuse if the cache is not yet full.protected voidAbstractLinkedList.Node. setNextNode(AbstractLinkedList.Node<E> next)Sets the next node.protected voidAbstractLinkedList.Node. setPreviousNode(AbstractLinkedList.Node<E> previous)Sets the previous node.protected voidAbstractLinkedList. updateNode(AbstractLinkedList.Node<E> node, E value)Updates the node with a new value.protected voidCursorableLinkedList. updateNode(AbstractLinkedList.Node<E> node, E value)Updates the node with a new value.Constructors in org.apache.commons.collections4.list with parameters of type AbstractLinkedList.Node Constructor Description Node(AbstractLinkedList.Node<E> previous, AbstractLinkedList.Node<E> next, E value)Constructs a new node.
-