Package org.geotools.data.store
Class ReprojectingIterator
- Object
-
- ReprojectingIterator
-
- All Implemented Interfaces:
Iterator<SimpleFeature>
public class ReprojectingIterator extends Object implements Iterator<SimpleFeature>
-
-
Constructor Summary
Constructors Constructor Description ReprojectingIterator(Iterator<SimpleFeature> delegate, CoordinateReferenceSystem source, CoordinateReferenceSystem target, SimpleFeatureType schema, GeometryCoordinateSequenceTransformer transformer)ReprojectingIterator(Iterator<SimpleFeature> delegate, MathTransform transform, SimpleFeatureType schema, GeometryCoordinateSequenceTransformer transformer)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Iterator<SimpleFeature>getDelegate()booleanhasNext()SimpleFeaturenext()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
-
ReprojectingIterator
public ReprojectingIterator(Iterator<SimpleFeature> delegate, MathTransform transform, SimpleFeatureType schema, GeometryCoordinateSequenceTransformer transformer) throws OperationNotFoundException, FactoryRegistryException, FactoryException
-
ReprojectingIterator
public ReprojectingIterator(Iterator<SimpleFeature> delegate, CoordinateReferenceSystem source, CoordinateReferenceSystem target, SimpleFeatureType schema, GeometryCoordinateSequenceTransformer transformer) throws OperationNotFoundException, FactoryRegistryException, FactoryException
-
-
Method Detail
-
getDelegate
public Iterator<SimpleFeature> getDelegate()
-
remove
public void remove()
- Specified by:
removein interfaceIterator<SimpleFeature>
-
hasNext
public boolean hasNext()
- Specified by:
hasNextin interfaceIterator<SimpleFeature>
-
next
public SimpleFeature next()
- Specified by:
nextin interfaceIterator<SimpleFeature>
-
-