Uses of Interface
org.jgrapht.util.DoublyLinkedList.ListNode
Packages that use DoublyLinkedList.ListNode
Package
Description
Algorithms dealing with various connectivity aspects of a graph.
Algorithms for testing planarity of the graphs
Non-graph-specific data structures, algorithms, and utilities used by JGraphT.
-
Uses of DoublyLinkedList.ListNode in org.jgrapht.alg.connectivity
Fields in org.jgrapht.alg.connectivity declared as DoublyLinkedList.ListNodeModifier and TypeFieldDescription(package private) DoublyLinkedList.ListNode
<TreeDynamicConnectivity<T>.Arc> TreeDynamicConnectivity.Arc.listNode
A list node this arc is stored in. -
Uses of DoublyLinkedList.ListNode in org.jgrapht.alg.planar
Fields in org.jgrapht.alg.planar declared as DoublyLinkedList.ListNodeModifier and TypeFieldDescription(package private) DoublyLinkedList.ListNode
<BoyerMyrvoldPlanarityInspector<V, E>.Node> BoyerMyrvoldPlanarityInspector.Node.listNode
Stores the list node from theseparatedDfsChildList
of the parent node this node is stored in. -
Uses of DoublyLinkedList.ListNode in org.jgrapht.util
Classes in org.jgrapht.util that implement DoublyLinkedList.ListNodeModifier and TypeClassDescriptionprivate static class
The defaultDoublyLinkedList.ListNode
implementation that enables checks and enforcement of a single container list policy.Methods in org.jgrapht.util that return DoublyLinkedList.ListNodeModifier and TypeMethodDescriptionDoublyLinkedList.addElementBeforeNode
(DoublyLinkedList.ListNode<E> successor, E element) Inserts the specified element before the specifiedsuccessor
in this list.DoublyLinkedList.addElementFirst
(E element) Inserts the specified element at the front of this list.DoublyLinkedList.addElementLast
(E element) Inserts the specified element at the end of this list.DoublyLinkedList.getFirstNode()
Returns the firstnode
of this list.DoublyLinkedList.getLastNode()
Returns the lastnode
of this list.DoublyLinkedList.ListNode.getNext()
Returns the next node in the list structure with respect to this nodeDoublyLinkedList.getNode
(int index) Returns thenode
at the specified position in this list.DoublyLinkedList.ListNode.getPrev()
Returns the previous node in the list structure with respect to this nodeDoublyLinkedList.lastNodeOf
(Object element) Returns the lastnode
holding the specifiedelement
in this list.DoublyLinkedList.NodeIterator.nextNode()
Returns the nextDoublyLinkedList.ListNode
in the list and advances the cursor position.Returns the firstnode
holding the specifiedelement
in this list.DoublyLinkedList.ListNodeIterator.previousNode()
Returns the previousDoublyLinkedList.ListNode
in the list and moves the cursor position backwards.DoublyLinkedList.ListNodeIteratorImpl.previousNode()
Returns the previousDoublyLinkedList.ListNode
in the list and moves the cursor position backwards.Methods in org.jgrapht.util with parameters of type DoublyLinkedList.ListNodeModifier and TypeMethodDescriptionDoublyLinkedList.addElementBeforeNode
(DoublyLinkedList.ListNode<E> successor, E element) Inserts the specified element before the specifiedsuccessor
in this list.void
DoublyLinkedList.addNode
(int index, DoublyLinkedList.ListNode<E> node) Inserts the specifiednode
at the specified position in this list.void
DoublyLinkedList.addNodeBefore
(DoublyLinkedList.ListNode<E> node, DoublyLinkedList.ListNode<E> successor) Inserts the specifiednode
before the specifiedsuccessor
in this list.void
DoublyLinkedList.addNodeFirst
(DoublyLinkedList.ListNode<E> node) Inserts the specifiednode
at the front of this list.void
DoublyLinkedList.addNodeLast
(DoublyLinkedList.ListNode<E> node) Inserts the specifiednode
at the end of this list.boolean
DoublyLinkedList.containsNode
(DoublyLinkedList.ListNode<E> node) Returns true if thisDoublyLinkedList
contains the specifiedDoublyLinkedList.ListNode
.int
DoublyLinkedList.indexOfNode
(DoublyLinkedList.ListNode<E> node) Returns the index of the specifiednode
in this list, or -1 if this list does not contain thenode
.boolean
DoublyLinkedList.removeNode
(DoublyLinkedList.ListNode<E> node) Removes thenode
from this list.