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()
boolean
hasNext()
Calls through toFeatureIterator.hasNext()
F
next()
Calls through toFeatureIterator.next()
void
remove()
-
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:
remove
in interfaceIterator<F extends Feature>
- Throws:
UnsupportedOperationException
-
getDelegate
public FeatureIterator<F> getDelegate()
- Returns:
- The underlying delegate.
-
-