Interface ICircularIterator<T>

Type Parameters:
T -
All Superinterfaces:
Iterator<T>
All Known Implementing Classes:
CircularIterator

public interface ICircularIterator<T> extends Iterator<T>
ICircularIterator
Version:
0.0.1
Author:
scx567888
  • Method Details

    • hasNext

      boolean hasNext()
      Specified by:
      hasNext in interface Iterator<T>
    • next

      T next()
      Specified by:
      next in interface Iterator<T>
    • prev

      T prev()
    • nextNode

      Node<T> nextNode()
    • prevNode

      Node<T> prevNode()