org.openjena.atlas.iterator
Class IteratorDelayedInitialization<T>

java.lang.Object
  extended by org.openjena.atlas.iterator.IteratorDelayedInitialization<T>
All Implemented Interfaces:
Iterator<T>

public abstract class IteratorDelayedInitialization<T>
extends Object
implements Iterator<T>

Class to delay the initialization of an iterator until first call of an Iterator operation.


Constructor Summary
IteratorDelayedInitialization()
           
 
Method Summary
 boolean hasNext()
           
 T next()
           
 void remove()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IteratorDelayedInitialization

public IteratorDelayedInitialization()
Method Detail

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>


Licenced under the Apache License, Version 2.0