Uses of Interface
org.jgrapht.util.DoublyLinkedList.NodeIterator
-
Packages that use DoublyLinkedList.NodeIterator Package Description org.jgrapht.util Non-graph-specific data structures, algorithms, and utilities used by JGraphT. -
-
Uses of DoublyLinkedList.NodeIterator in org.jgrapht.util
Subinterfaces of DoublyLinkedList.NodeIterator in org.jgrapht.util Modifier and Type Interface Description static interface
DoublyLinkedList.ListNodeIterator<E>
Methods in org.jgrapht.util that return DoublyLinkedList.NodeIterator Modifier and Type Method Description DoublyLinkedList.NodeIterator<E>
DoublyLinkedList. circularIterator(E firstElement)
Returns aDoublyLinkedList.NodeIterator
that starts at the firstDoublyLinkedList.ListNode
of this list that is equal to the specifiedfirstElement
, iterates in forward direction over the end of this list until the first node.DoublyLinkedList.NodeIterator<E>
DoublyLinkedList. descendingIterator()
DoublyLinkedList.NodeIterator<E>
DoublyLinkedList. iterator()
DoublyLinkedList.NodeIterator<E>
DoublyLinkedList. reverseCircularIterator(E firstElement)
Returns aDoublyLinkedList.NodeIterator
that starts at the firstDoublyLinkedList.ListNode
of this list that is equal to the specifiedfirstElement
, iterates in reverse direction over the end of this list until the first node.
-