Uses of Interface
org.jgrapht.util.DoublyLinkedList.NodeIterator
Packages that use DoublyLinkedList.NodeIterator
Package
Description
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.utilModifier and TypeInterfaceDescriptionstatic interfaceClasses in org.jgrapht.util that implement DoublyLinkedList.NodeIteratorModifier and TypeClassDescriptionprivate classAn implementation of theDoublyLinkedList.ListNodeIteratorinterface.Methods in org.jgrapht.util that return DoublyLinkedList.NodeIteratorModifier and TypeMethodDescriptionDoublyLinkedList.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.descendingIterator()DoublyLinkedList.iterator()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.