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 interfaceDoublyLinkedList.ListNodeIterator<E>Classes in org.jgrapht.util that implement DoublyLinkedList.NodeIterator Modifier and Type Class Description private classDoublyLinkedList.ListNodeIteratorImplAn implementation of theDoublyLinkedList.ListNodeIteratorinterface.Methods in org.jgrapht.util that return DoublyLinkedList.NodeIterator Modifier and Type Method Description DoublyLinkedList.NodeIterator<E>DoublyLinkedList. circularIterator(E firstElement)Returns aDoublyLinkedList.NodeIteratorthat starts at the firstDoublyLinkedList.ListNodeof 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.NodeIteratorthat starts at the firstDoublyLinkedList.ListNodeof this list that is equal to the specifiedfirstElement, iterates in reverse direction over the end of this list until the first node.private static <E> DoublyLinkedList.NodeIterator<E>DoublyLinkedList. reverseIterator(DoublyLinkedList.ListNodeIterator<E> listIterator)Returns aDoublyLinkedList.NodeIteratorthat iterates in reverse order, assuming the cursor of the specifiedDoublyLinkedList.ListNodeIteratoris behind the tail of the list.
-