Package org.geotools.data.store
Class FeatureIteratorIterator<F extends Feature>
- Object
-
- FeatureIteratorIterator<F>
-
-
Constructor Summary
Constructors Constructor Description FeatureIteratorIterator(FeatureIterator<F> delegate)Creates the new iterator.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FeatureIterator<F>getDelegate()booleanhasNext()Calls through toFeatureIterator.hasNext()Fnext()Calls through toFeatureIterator.next()voidremove()-
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface Iterator
forEachRemaining
-
-
-
-
Constructor Detail
-
FeatureIteratorIterator
public FeatureIteratorIterator(FeatureIterator<F> delegate)
Creates the new iterator.- Parameters:
delegate- The iterator to delegate to.
-
-
Method Detail
-
hasNext
public boolean hasNext()
Calls through toFeatureIterator.hasNext()
-
next
public F next()
Calls through toFeatureIterator.next()
-
remove
public void remove()
- Specified by:
removein interfaceIterator<F extends Feature>- Throws:
UnsupportedOperationException
-
getDelegate
public FeatureIterator<F> getDelegate()
- Returns:
- The underlying delegate.
-
-