Class UnmodifiableIterator<T>

java.lang.Object
com.espertech.esper.common.internal.collection.UnmodifiableIterator<T>
All Implemented Interfaces:
Iterator<T>

public class UnmodifiableIterator<T> extends Object implements Iterator<T>
Iterator that does not allow remove.
  • Constructor Details

    • UnmodifiableIterator

      public UnmodifiableIterator(Iterator<T> iterator)
  • Method Details

    • hasNext

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

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