Class TypeSystemImpl.ListIterator<T>

java.lang.Object
org.apache.uima.cas.impl.TypeSystemImpl.ListIterator<T>
All Implemented Interfaces:
Iterator<T>
Enclosing class:
TypeSystemImpl

private static class TypeSystemImpl.ListIterator<T> extends Object implements Iterator<T>
  • Field Details

    • list

      private final List<T> list
    • len

      private final int len
    • pos

      private int pos
  • Constructor Details

    • ListIterator

      private ListIterator(List<T> list, int max)
  • Method Details

    • hasNext

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

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

      public void remove()
      Specified by:
      remove in interface Iterator<T>