Uses of Interface
org.geotools.data.simple.SimpleFeatureIterator

Packages that use SimpleFeatureIterator
org.geotools   
org.geotools.data Defines the DataStoreAPI via which all data is imported or exported. 
org.geotools.data.collection Implementations of FeatureCollection for different purposes. 
org.geotools.data.crs Provides support for the OGC Catalog Specification. 
org.geotools.data.gen   
org.geotools.data.memory   
org.geotools.data.simple   
org.geotools.data.sort   
org.geotools.data.store   
org.geotools.feature   
org.geotools.feature.collection Helper classes for implementing FeatureCollections. 
org.geotools.gml.producer   
org.geotools.process.gs Gathers up processes for the "gs" GeoSpatial factory; most of these have been back ported from GeoServer for wider use. 
 

Uses of SimpleFeatureIterator in org.geotools
 

Methods in org.geotools that return SimpleFeatureIterator
 SimpleFeatureIterator GML.decodeFeatureIterator(InputStream in)
          Allow the parsing of features as a stream; the returned iterator can be used to step through the inputstream of content one feature at a time without loading everything into memory.
 SimpleFeatureIterator GML.decodeFeatureIterator(InputStream in, QName elementName)
          Allow the parsing of features as a stream; the returned iterator can be used to step through the inputstream of content one feature at a time without loading everything into memory.
protected  SimpleFeatureIterator GML.iterator(StreamingParser parser)
          Used to wrap up a StreamingParser as a Iterator.
 

Uses of SimpleFeatureIterator in org.geotools.data
 

Methods in org.geotools.data with parameters of type SimpleFeatureIterator
static SimpleFeatureCollection DataUtilities.collection(SimpleFeatureIterator reader)
          Copies the provided reader into a FeatureCollection, reader will be closed.
 

Uses of SimpleFeatureIterator in org.geotools.data.collection
 

Methods in org.geotools.data.collection that return SimpleFeatureIterator
 SimpleFeatureIterator SpatialIndexFeatureCollection.features()
           
 SimpleFeatureIterator ListFeatureCollection.features()
           
 SimpleFeatureIterator TreeSetFeatureCollection.features()
          Gets a SimpleFeatureIterator of this feature collection.
 

Uses of SimpleFeatureIterator in org.geotools.data.crs
 

Classes in org.geotools.data.crs that implement SimpleFeatureIterator
 class ForceCoordinateSystemIterator
          ForceCoordinateSystemFeatureReader provides a CoordinateReferenceSystem for FeatureTypes.
 class ReprojectFeatureIterator
          ReprojectFeatureReader provides a reprojection for FeatureTypes.
 

Uses of SimpleFeatureIterator in org.geotools.data.gen
 

Classes in org.geotools.data.gen that implement SimpleFeatureIterator
 class PreGeneralizedFeatureIterator
           
 

Fields in org.geotools.data.gen declared as SimpleFeatureIterator
protected  SimpleFeatureIterator PreGeneralizedFeatureIterator.backendIterator
           
 

Methods in org.geotools.data.gen that return SimpleFeatureIterator
 SimpleFeatureIterator PreGeneralizedFeatureCollection.features()
           
 

Constructors in org.geotools.data.gen with parameters of type SimpleFeatureIterator
PreGeneralizedFeatureIterator(SimpleFeatureIterator backendIterator, SimpleFeatureType featureTyp, int[] indexMapping, String geomPropertyName, String backendGeomPropertyName)
           
 

Uses of SimpleFeatureIterator in org.geotools.data.memory
 

Methods in org.geotools.data.memory with parameters of type SimpleFeatureIterator
 void MemoryDataStore.addFeatures(SimpleFeatureIterator reader)
          Configures MemoryDataStore with FeatureReader.
 

Constructors in org.geotools.data.memory with parameters of type SimpleFeatureIterator
MemoryDataStore(SimpleFeatureIterator reader)
           
 

Uses of SimpleFeatureIterator in org.geotools.data.simple
 

Methods in org.geotools.data.simple that return SimpleFeatureIterator
 SimpleFeatureIterator SimpleFeatureCollection.features()
          Obtain a SimpleFeatureIterator of the Features within this SimpleFeatureCollection.
 

Constructors in org.geotools.data.simple with parameters of type SimpleFeatureIterator
DelegateSimpleFeatureReader(SimpleFeatureType featureType, SimpleFeatureIterator features)
           
 

Uses of SimpleFeatureIterator in org.geotools.data.sort
 

Classes in org.geotools.data.sort that implement SimpleFeatureIterator
 class SortedFeatureIterator
           
 

Constructors in org.geotools.data.sort with parameters of type SimpleFeatureIterator
SortedFeatureIterator(SimpleFeatureIterator iterator, SimpleFeatureType schema, SortBy[] sortBy, int maxFeatures)
          Builds a new sorting feature iterator
 

Uses of SimpleFeatureIterator in org.geotools.data.store
 

Classes in org.geotools.data.store that implement SimpleFeatureIterator
static class ContentFeatureCollection.WrappingFeatureIterator
           
 class ReprojectingFeatureIterator
           
 class ReTypingFeatureIterator
          FeatureIterator wrapper which re-types features on the fly based on a target feature type.
 

Methods in org.geotools.data.store that return SimpleFeatureIterator
 SimpleFeatureIterator ContentFeatureCollection.features()
           
 SimpleFeatureIterator ReTypingFeatureCollection.features()
           
 SimpleFeatureIterator ReprojectingFeatureCollection.features()
           
 SimpleFeatureIterator DataFeatureCollection.features()
          SimpleFeatureIterator is entirely based on iterator().
 SimpleFeatureIterator ReprojectingFeatureIterator.getDelegate()
           
 SimpleFeatureIterator ReTypingFeatureIterator.getDelegate()
           
 

Constructors in org.geotools.data.store with parameters of type SimpleFeatureIterator
ReprojectingFeatureIterator(SimpleFeatureIterator delegate, CoordinateReferenceSystem source, CoordinateReferenceSystem target, SimpleFeatureType schema, GeometryCoordinateSequenceTransformer transformer)
           
ReprojectingFeatureIterator(SimpleFeatureIterator delegate, MathTransform transform, SimpleFeatureType schema, GeometryCoordinateSequenceTransformer transformer)
           
ReTypingFeatureIterator(SimpleFeatureIterator delegate, SimpleFeatureType source, SimpleFeatureType target)
           
 

Uses of SimpleFeatureIterator in org.geotools.feature
 

Methods in org.geotools.feature that return SimpleFeatureIterator
 SimpleFeatureIterator DefaultFeatureCollection.features()
          Gets a SimpleFeatureIterator of this feature collection.
 

Uses of SimpleFeatureIterator in org.geotools.feature.collection
 

Classes in org.geotools.feature.collection that implement SimpleFeatureIterator
 class DecoratingSimpleFeatureIterator
          A feature iterator that completely delegates to a normal Iterator, simply allowing Java 1.4 code to escape the caste (sic) system.
 class DelegateSimpleFeatureIterator
          A feature iterator that completely delegates to a normal Iterator, simply allowing Java 1.4 code to escape the caste (sic) system.
 class FilteringSimpleFeatureIterator
          Extension of FilteringFeatureIterator that type narrows to SimpleFeature.
 class MaxFeaturesSimpleFeatureIterator
          SimpleFeatureIterator wrapper which can use a start and end bounds to cap the number of returned features.
 class SimpleFeatureIteratorImpl
          A convenience class for wrapping a Collection Iterator up as a SimpleFeatureCollection.
 

Methods in org.geotools.feature.collection that return SimpleFeatureIterator
 SimpleFeatureIterator AdaptorFeatureCollection.features()
           
 SimpleFeatureIterator DecoratingSimpleFeatureCollection.features()
           
 SimpleFeatureIterator MaxSimpleFeatureCollection.features()
           
 SimpleFeatureIterator FilteringSimpleFeatureCollection.features()
           
 SimpleFeatureIterator AbstractFeatureCollection.features()
           
 SimpleFeatureIterator SortedSimpleFeatureCollection.features()
           
abstract  SimpleFeatureIterator BaseSimpleFeatureCollection.features()
          Subclasses required to implement this method to traverse FeatureCollection contents.
 SimpleFeatureIterator SubFeatureCollection.features()
           
 SimpleFeatureIterator MaxFeaturesSimpleFeatureIterator.getDelegate()
           
 

Methods in org.geotools.feature.collection with parameters of type SimpleFeatureIterator
 void AdaptorFeatureCollection.close(SimpleFeatureIterator close)
           
 void FilteringSimpleFeatureCollection.close(SimpleFeatureIterator close)
           
 void AdaptorFeatureCollection.closeIterator(SimpleFeatureIterator close)
           
 

Constructors in org.geotools.feature.collection with parameters of type SimpleFeatureIterator
DecoratingSimpleFeatureIterator(SimpleFeatureIterator iterator)
          Wrap the provided iterator up as a FeatureIterator.
FilteringSimpleFeatureIterator(SimpleFeatureIterator delegate, Filter filter)
           
MaxFeaturesSimpleFeatureIterator(SimpleFeatureIterator iterator, long max)
           
MaxFeaturesSimpleFeatureIterator(SimpleFeatureIterator delegate, long start, long max)
           
 

Uses of SimpleFeatureIterator in org.geotools.gml.producer
 

Methods in org.geotools.gml.producer with parameters of type SimpleFeatureIterator
 void FeatureTransformer.FeatureTranslator.handleFeatureIterator(SimpleFeatureIterator iterator)
           
 

Uses of SimpleFeatureIterator in org.geotools.process.gs
 

Classes in org.geotools.process.gs that implement SimpleFeatureIterator
 class WrappingIterator
          An iterator wrapping a SimpleFeatureIterator and exposing its close method.
 

Constructors in org.geotools.process.gs with parameters of type SimpleFeatureIterator
WrappingIterator(SimpleFeatureIterator delegate)
           
 



Copyright © 1996-2014 Geotools. All Rights Reserved.