Uses of Interface
org.geotools.feature.FeatureCollection
-
-
Uses of FeatureCollection in net.opengis.wfs.impl
Methods in net.opengis.wfs.impl that return FeatureCollection Modifier and Type Method Description FeatureCollectionWfsFactoryImpl. createFeatureCollectionFromString(EDataType eDataType, String initialValue) -
Uses of FeatureCollection in net.opengis.wfs20
Methods in net.opengis.wfs20 that return types with arguments of type FeatureCollection Modifier and Type Method Description EList<FeatureCollection>SimpleFeatureCollectionType. getMember()Returns the value of the 'Member' containment reference list. -
Uses of FeatureCollection in net.opengis.wfs20.impl
Fields in net.opengis.wfs20.impl with type parameters of type FeatureCollection Modifier and Type Field Description protected EList<FeatureCollection>SimpleFeatureCollectionTypeImpl. memberThe cached value of the 'Member' attribute list.Methods in net.opengis.wfs20.impl that return FeatureCollection Modifier and Type Method Description FeatureCollectionWfs20FactoryImpl. createFeatureCollectionFromString(EDataType eDataType, String initialValue)Methods in net.opengis.wfs20.impl that return types with arguments of type FeatureCollection Modifier and Type Method Description EList<FeatureCollection>SimpleFeatureCollectionTypeImpl. getMember() -
Uses of FeatureCollection in net.opengis.wfs20.util
Methods in net.opengis.wfs20.util with parameters of type FeatureCollection Modifier and Type Method Description booleanWfs20Validator. validateFeatureCollection(FeatureCollection featureCollection, DiagnosticChain diagnostics, Map<Object,Object> context) -
Uses of FeatureCollection in net.opengis.wfs20.validation
Method parameters in net.opengis.wfs20.validation with type arguments of type FeatureCollection Modifier and Type Method Description booleanSimpleFeatureCollectionTypeValidator. validateMember(EList<FeatureCollection> value) -
Uses of FeatureCollection in org.geotools.api.data
Methods in org.geotools.api.data that return FeatureCollection Modifier and Type Method Description FeatureCollection<T,F>FeatureSource. getFeatures()Retrieves all features in the form of aFeatureCollection.FeatureCollection<T,F>FeatureSource. getFeatures(Query query)Retrieves features, in the form of aFeatureCollection, based on aQuery.FeatureCollection<T,F>FeatureSource. getFeatures(Filter filter)Retrieves features, in the form of aFeatureCollection, based on an OGCFilter.Methods in org.geotools.api.data with parameters of type FeatureCollection Modifier and Type Method Description List<FeatureId>FeatureStore. addFeatures(FeatureCollection<T,F> featureCollection)Adds all features from the feature collection. -
Uses of FeatureCollection in org.geotools.appschema.resolver.data
Classes in org.geotools.appschema.resolver.data that implement FeatureCollection Modifier and Type Class Description classSampleDataAccessFeatureCollectionCollection of features from aSampleDataAccess.Methods in org.geotools.appschema.resolver.data that return FeatureCollection Modifier and Type Method Description FeatureCollection<FeatureType,Feature>SampleDataAccessFeatureSource. getFeatures()Return aFeatureCollectioncontaining the sample features.FeatureCollection<FeatureType,Feature>SampleDataAccessFeatureSource. getFeatures(Query query)Not yet implemented.FeatureCollection<FeatureType,Feature>SampleDataAccessFeatureSource. getFeatures(Filter filter)Not yet implemented.FeatureCollection<FeatureType,Feature>SampleDataAccessFeatureCollection. sort(SortBy order)Unsupported operation.FeatureCollection<FeatureType,Feature>SampleDataAccessFeatureCollection. subCollection(Filter filter)Unsupported operation. -
Uses of FeatureCollection in org.geotools.data
Classes in org.geotools.data that implement FeatureCollection Modifier and Type Class Description classDefaultFeatureResultsGeneric "results" of a query, class.Methods in org.geotools.data with parameters of type FeatureCollection Modifier and Type Method Description static ReferencedEnvelopeDataUtilities. bounds(FeatureCollection<? extends FeatureType,? extends Feature> collection)Manually calculates the bounds of a feature collection usingfeatures().static DefaultFeatureCollectionDataUtilities. collection(FeatureCollection<SimpleFeatureType,SimpleFeature> featureCollection)Copies the provided features into a FeatureCollection.static <F extends Feature>
Collection<F>DataUtilities. collectionCast(FeatureCollection<?,F> featureCollection)Used to quickly cast to a java.util.Collection.static intDataUtilities. count(FeatureCollection<? extends FeatureType,? extends Feature> collection)Manually count the number of features in a feature collection using usingfeatures().static Set<String>DataUtilities. fidSet(FeatureCollection<?,?> featureCollection)Copies the feature ids from each and every feature into a set.static <F extends Feature>
FDataUtilities. first(FeatureCollection<?,F> featureCollection)Obtain the first feature from the collection as an exemplar.static <F extends Feature>
List<F>DataUtilities. list(FeatureCollection<?,F> featureCollection)Copies the provided features into a List.static <F extends Feature>
List<F>DataUtilities. list(FeatureCollection<?,F> featureCollection, int maxFeatures)Copies the provided fetaures into a List.static SimpleFeatureReaderDataUtilities. reader(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)Adapt a collection to a reader for use with FeatureStore.setFeatures( reader ).static SimpleFeatureCollectionDataUtilities. simple(FeatureCollection<SimpleFeatureType,SimpleFeature> featureCollection)A safe cast to SimpleFeatureCollection; that will introduce a wrapper if it has to.static SimpleFeatureSourceDataUtilities. source(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)Wraps up the provided feature collection in as a SimpleFeatureSource.static voidDataUtilities. visit(FeatureCollection<?,?> collection, FeatureVisitor visitor, ProgressListener progress)Manually visit each feature usingfeatures(). -
Uses of FeatureCollection in org.geotools.data.collection
Classes in org.geotools.data.collection that implement FeatureCollection Modifier and Type Class Description protected classCollectionFeatureSource.SubCollectionSubCollection for CollectionFeatureSource.classListFeatureCollectionFeatureCollection implementation wrapping around a java.util.List.classSpatialIndexFeatureCollectionFeatureCollection used to stage information for display using a SpatialIndex.classTreeSetFeatureCollectionOrigional implementation of FeatureCollection using a TreeMap for internal storage.Methods in org.geotools.data.collection with parameters of type FeatureCollection Modifier and Type Method Description booleanSpatialIndexFeatureCollection. addAll(FeatureCollection<? extends SimpleFeatureType,? extends SimpleFeature> collection)booleanTreeSetFeatureCollection. addAll(FeatureCollection<?,?> collection)Constructors in org.geotools.data.collection with parameters of type FeatureCollection Constructor Description TreeSetFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)This constructor should not be used by client code. -
Uses of FeatureCollection in org.geotools.data.complex
Classes in org.geotools.data.complex that implement FeatureCollection Modifier and Type Class Description classMappingFeatureCollectionFeatureCollectionfor aMappingFeatureIterator.Fields in org.geotools.data.complex declared as FeatureCollection Modifier and Type Field Description protected FeatureCollection<? extends FeatureType,? extends Feature>DataAccessMappingFeatureIterator. sourceFeaturesMethods in org.geotools.data.complex that return FeatureCollection Modifier and Type Method Description FeatureCollection<FeatureType,Feature>MappingFeatureSource. getFeatures()FeatureCollection<FeatureType,Feature>MappingFeatureSource. getFeatures(Query query)FeatureCollection<FeatureType,Feature>MappingFeatureSource. getFeatures(Filter filter)FeatureCollection<FeatureType,Feature>MappingFeatureSource. getFeatures(Filter filter, Hints hints)FeatureCollection<FeatureType,Feature>MappingFeatureCollection. sort(SortBy order)FeatureCollection<FeatureType,Feature>MappingFeatureCollection. subCollection(Filter filter)Methods in org.geotools.data.complex with parameters of type FeatureCollection Modifier and Type Method Description booleanMappingFeatureCollection. addAll(FeatureCollection<? extends FeatureType,? extends Feature> resource)QueryIndexQueryManager.PartialIndexQueryManager. buildCombinedQuery(FeatureCollection<? extends FeatureType,? extends Feature> featureCollection)Constructors in org.geotools.data.complex with parameters of type FeatureCollection Constructor Description IndexUniqueVisitorIterator(FeatureCollection<SimpleFeatureType,SimpleFeature> fc, Query idQuery, String idFieldName) -
Uses of FeatureCollection in org.geotools.data.complex.xml
Subinterfaces of FeatureCollection in org.geotools.data.complex.xml Modifier and Type Interface Description interfaceXmlFeatureCollection -
Uses of FeatureCollection in org.geotools.data.crs
Classes in org.geotools.data.crs that implement FeatureCollection Modifier and Type Class Description classForceCoordinateSystemFeatureResultsForceCoordinateSystemFeatureResults provides a CoordinateReferenceSystem for FeatureTypes.classReprojectFeatureResultsReprojectFeatureReader provides a reprojection for FeatureTypes.Methods in org.geotools.data.crs that return FeatureCollection Modifier and Type Method Description FeatureCollection<SimpleFeatureType,SimpleFeature>ForceCoordinateSystemFeatureResults. getOrigin()Returns the feature results wrapped by this ForceCoordinateSystemFeatureResultsFeatureCollection<SimpleFeatureType,SimpleFeature>ReprojectFeatureResults. getOrigin()Returns the feature results wrapped by this reprojecting feature resultsConstructors in org.geotools.data.crs with parameters of type FeatureCollection Constructor Description ForceCoordinateSystemFeatureResults(FeatureCollection<SimpleFeatureType,SimpleFeature> results, CoordinateReferenceSystem forcedCS)ForceCoordinateSystemFeatureResults(FeatureCollection<SimpleFeatureType,SimpleFeature> results, CoordinateReferenceSystem forcedCS, boolean forceOnlyMissing)ReprojectFeatureResults(FeatureCollection<SimpleFeatureType,SimpleFeature> results, CoordinateReferenceSystem destinationCS)Creates a new reprojecting feature results -
Uses of FeatureCollection in org.geotools.data.directory
Methods in org.geotools.data.directory with parameters of type FeatureCollection Modifier and Type Method Description List<FeatureId>DirectoryFeatureStore. addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> collection) -
Uses of FeatureCollection in org.geotools.data.gen
Classes in org.geotools.data.gen that implement FeatureCollection Modifier and Type Class Description classPreGeneralizedFeatureCollection -
Uses of FeatureCollection in org.geotools.data.geojson
Classes in org.geotools.data.geojson that implement FeatureCollection Modifier and Type Class Description classPagingFeatureCollectionA GeoJSON specific feature collection that can follow "next" links in order to retrieve all data -
Uses of FeatureCollection in org.geotools.data.memory
Classes in org.geotools.data.memory that implement FeatureCollection Modifier and Type Class Description classMemoryFeatureCollectionImplement a SimpleFeatureCollection by burning memory!Methods in org.geotools.data.memory with parameters of type FeatureCollection Modifier and Type Method Description voidMemoryDataStore. addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)Constructors in org.geotools.data.memory with parameters of type FeatureCollection Constructor Description MemoryDataStore(FeatureCollection<SimpleFeatureType,SimpleFeature> collection) -
Uses of FeatureCollection in org.geotools.data.simple
Subinterfaces of FeatureCollection in org.geotools.data.simple Modifier and Type Interface Description interfaceSimpleFeatureCollectionAccess to "simple" Feature content where each feature has the same SimpleFeatureType. -
Uses of FeatureCollection in org.geotools.data.store
Classes in org.geotools.data.store that implement FeatureCollection Modifier and Type Class Description classContentFeatureCollectionA FeatureCollection that completely delegates to a backing FetaureSource#getReaderclassDataFeatureCollectionA starting point for implementing FeatureCollection's backed onto a FeatureReader.classEmptyFeatureCollectionclassFilteringFeatureCollection<T extends FeatureType,F extends Feature>Decorates a feature collection with one that filters content.classMaxFeaturesFeatureCollection<T extends FeatureType,F extends Feature>SimpleFeatureCollection wrapper which limits the number of features returned.classReprojectingFeatureCollectionSimpleFeatureCollection decorator that reprojects all geometries of the features within the feature collection.classReTypingFeatureCollectionSimpleFeatureCollection decorator which decorates a feature collection "re-typing" its schema based on attributes specified in a query.Methods in org.geotools.data.store that return FeatureCollection Modifier and Type Method Description FeatureCollection<T,F>FilteringFeatureCollection. sort(SortBy order)FeatureCollection<T,F>MaxFeaturesFeatureCollection. sort(SortBy order)FeatureCollection<T,F>FilteringFeatureCollection. subCollection(Filter filter)FeatureCollection<T,F>MaxFeaturesFeatureCollection. subCollection(Filter filter)Methods in org.geotools.data.store with parameters of type FeatureCollection Modifier and Type Method Description booleanDataFeatureCollection. addAll(FeatureCollection resource)List<FeatureId>ContentFeatureStore. addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> featureCollection)Adds a collection of features to the store.Constructors in org.geotools.data.store with parameters of type FeatureCollection Constructor Description FilteringFeatureCollection(FeatureCollection<T,F> delegate, Filter filter)MaxFeaturesFeatureCollection(FeatureCollection<T,F> delegate, long max)ReprojectingFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> delegate, CoordinateReferenceSystem target)ReprojectingFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> delegate, CoordinateReferenceSystem source, CoordinateReferenceSystem target)ReTypingFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> delegate, SimpleFeatureType featureType) -
Uses of FeatureCollection in org.geotools.data.transform
Methods in org.geotools.data.transform with parameters of type FeatureCollection Modifier and Type Method Description List<FeatureId>TransformFeatureStore. addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> collection) -
Uses of FeatureCollection in org.geotools.data.util
Methods in org.geotools.data.util with parameters of type FeatureCollection Modifier and Type Method Description static <T extends Feature,K extends FeatureType>
Stream<T>FeatureStreams. toFeatureStream(FeatureCollection<K,T> fc)Converts FeatureCollection to Stream of Features Use with try-with-resources clause for auto closing -
Uses of FeatureCollection in org.geotools.data.wfs.impl
Methods in org.geotools.data.wfs.impl that return FeatureCollection Modifier and Type Method Description FeatureCollection<FeatureType,Feature>WFSContentComplexFeatureSource. getFeatures()Get features using the default Query.ALL.FeatureCollection<FeatureType,Feature>WFSContentComplexFeatureSource. getFeatures(Query query)Get features based on the query specified.FeatureCollection<FeatureType,Feature>WFSContentComplexFeatureSource. getFeatures(Filter filter)Get features based on the specified filter. -
Uses of FeatureCollection in org.geotools.data.wfs.internal
Classes in org.geotools.data.wfs.internal that implement FeatureCollection Modifier and Type Class Description classWFSContentComplexFeatureCollectionFeature collection for parsing complex features.Methods in org.geotools.data.wfs.internal that return FeatureCollection Modifier and Type Method Description FeatureCollection<FeatureType,Feature>WFSContentComplexFeatureCollection. subCollection(Filter filter)Issue a new request for subCollection -
Uses of FeatureCollection in org.geotools.feature
Classes in org.geotools.feature that implement FeatureCollection Modifier and Type Class Description classDefaultFeatureCollectionA basic implementation of SimpleFeatureCollection which use aTreeMapfor its internal storage.Methods in org.geotools.feature that return FeatureCollection Modifier and Type Method Description FeatureCollection<? extends FeatureType,? extends Feature>CollectionEvent. getCollection()provides access to the SimpleFeatureCollection which fired the eventFeatureCollection<T,F>FeatureCollection. sort(SortBy order)Obtained sorted contents.FeatureCollection<T,F>FeatureCollection. subCollection(Filter filter)SimpleFeatureCollection "view" indicated by provided filter.Methods in org.geotools.feature with parameters of type FeatureCollection Modifier and Type Method Description booleanDefaultFeatureCollection. addAll(FeatureCollection<?,?> collection)voidFeatureCollectionIteration.Handler. endFeatureCollection(FeatureCollection<?,?> fc)The handler is done visiting a FeatureCollection.voidFeatureCollectionIteration.Handler. handleFeatureCollection(FeatureCollection<?,?> fc)The handler is visiting a FeatureCollection.static voidFeatureCollectionIteration. iteration(FeatureCollectionIteration.Handler handler, FeatureCollection<?,?> collection)A convienience method for obtaining a new iteration and calling iterate.protected voidFeatureCollectionIteration. walker(FeatureCollection<?,?> collection)Perform the iterative behavior on the given collection.Constructors in org.geotools.feature with parameters of type FeatureCollection Constructor Description CollectionEvent(FeatureCollection<? extends FeatureType,? extends Feature> collection, FeatureEvent event)CollectionEvent(FeatureCollection<? extends FeatureType,? extends Feature> source, SimpleFeature[] involvedFeatures, int type)Constructs a new CollectionEvent.DefaultFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)Used to stage content in memory.FeatureCollectionIteration(FeatureCollectionIteration.Handler handler, FeatureCollection<?,?> collection)Create a new FeatureCollectionIteration with the given handler and collection. -
Uses of FeatureCollection in org.geotools.feature.collection
Subinterfaces of FeatureCollection in org.geotools.feature.collection Modifier and Type Interface Description interfaceRandomFeatureAccessAccess Feature content using Feature "Id".Classes in org.geotools.feature.collection that implement FeatureCollection Modifier and Type Class Description classAbstractFeatureCollectionImplement a feature collection just based on provision of anIterator.classAdaptorFeatureCollectionImplement a feature collection just based on provision of iterator.classBaseFeatureCollection<T extends FeatureType,F extends Feature>Implement a feature collection just based on provision of aFeatureIterator.classBaseSimpleFeatureCollectionclassClippedFeatureCollectionSimpleFeatureCollection wrapper that clip (crops) features according to the clip geometry passed.classClippingFeatureCollectionThe class decorates a SimpleFeatureCollection with one that returns features that intersect the geometry passed with a Hints.GEOMETRY_CLIPclassDecoratingFeatureCollection<T extends FeatureType,F extends Feature>A FeatureCollection which completely delegates to another FeatureCollection.classDecoratingSimpleFeatureCollectionA FeatureCollection which completely delegates to another FeatureCollection.classFilteringSimpleFeatureCollectionDecorates a feature collection with one that filters content.classMaxSimpleFeatureCollectionSimpleFeatureCollection wrapper which limits the number of features returned.classSortedSimpleFeatureCollectionA wrapper that will sort a feature collection using a size sensitive algorithm, in main memory for small collections, using secondary memory otherwise.classSubFeatureCollectionReasonable default implementation for subCollection making use of parentSimpleFeatureCollection.features()and provided Filter.classSubFeatureListDefault implementation ofsort(SortBy).Fields in org.geotools.feature.collection declared as FeatureCollection Modifier and Type Field Description protected FeatureCollection<T,F>DecoratingFeatureCollection. delegatethe delegateMethods in org.geotools.feature.collection that return FeatureCollection Modifier and Type Method Description FeatureCollection<T,F>BaseFeatureCollection. sort(SortBy order)Obtained sorted contents, only implemented for SimpleFeature at present.FeatureCollection<T,F>DecoratingFeatureCollection. sort(SortBy order)FeatureCollection<T,F>BaseFeatureCollection. subCollection(Filter filter)Convenience implementation that just wraps this collection into aFilteringFeatureCollection.FeatureCollection<T,F>DecoratingFeatureCollection. subCollection(Filter filter)Constructors in org.geotools.feature.collection with parameters of type FeatureCollection Constructor Description DecoratingFeatureCollection(FeatureCollection<T,F> delegate)DecoratingSimpleFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> delegate)FilteringSimpleFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> delegate, Filter filter)MaxSimpleFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> delegate, long max) -
Uses of FeatureCollection in org.geotools.filter.function
Methods in org.geotools.filter.function with parameters of type FeatureCollection Modifier and Type Method Description protected double[]ClassificationFunction. computeGroupByPercentages(FeatureCollection collection, double[] percentages, int totalSize, double min, double classWidth)This method return percentages by using a single groupBy query to retrieve class members. -
Uses of FeatureCollection in org.geotools.geojson.feature
Methods in org.geotools.geojson.feature that return FeatureCollection Modifier and Type Method Description FeatureCollectionFeatureJSON. readFeatureCollection(InputStream input)Reads a feature collection from GeoJSON.FeatureCollectionFeatureJSON. readFeatureCollection(Object input)Reads a feature collection from GeoJSON.Methods in org.geotools.geojson.feature with parameters of type FeatureCollection Modifier and Type Method Description StringFeatureJSON. toString(FeatureCollection features)Writes a feature collection as GeoJSON returning the result as a string.voidFeatureJSON. writeFeatureCollection(FeatureCollection features, OutputStream output)Writes a feature collection as GeoJSON.voidFeatureJSON. writeFeatureCollection(FeatureCollection features, Object output)Writes a feature collection as GeoJSON. -
Uses of FeatureCollection in org.geotools.gml.producer
Methods in org.geotools.gml.producer with parameters of type FeatureCollection Modifier and Type Method Description voidFeatureTransformer.FeatureTranslator. endFeatureCollection(FeatureCollection<?,?> collection)Sends sax for the ending of a feature collection.voidFeatureTransformer.FeatureTranslator. handleFeatureCollection(FeatureCollection<?,?> collection)Prints up the gml for a featurecollection. -
Uses of FeatureCollection in org.geotools.map
Constructors in org.geotools.map with parameters of type FeatureCollection Constructor Description FeatureLayer(FeatureCollection collection, Style style)FeatureLayer(FeatureCollection collection, Style style, String title) -
Uses of FeatureCollection in org.geotools.process.feature
Fields in org.geotools.process.feature with type parameters of type FeatureCollection Modifier and Type Field Description static Parameter<FeatureCollection>AbstractFeatureCollectionProcessFactory. FEATURESFeatures for operationstatic Parameter<FeatureCollection>FeatureToFeatureProcessFactory. RESULTResult of the operation is a FeatureCollection. -
Uses of FeatureCollection in org.geotools.process.vector
Classes in org.geotools.process.vector that implement FeatureCollection Modifier and Type Class Description classProcessingCollection<T extends FeatureType,F extends Feature>Abstract base class to ease the implementation of a streaming processing collection, that is, one that tries to compute the results on the fly as the iterator is traversed.classSimpleProcessingCollectionThe simple feature version ofProcessingCollection.Methods in org.geotools.process.vector that return FeatureCollection Modifier and Type Method Description FeatureCollectionGroupCandidateSelectionProcess. execute(FeatureCollection<? extends FeatureType,? extends Feature> features, String aggregation, String operationAttribute, List<String> groupingAttributes)FeatureCollection<? extends FeatureType,? extends Feature>LRSGeocodeProcess. execute(FeatureCollection<? extends FeatureType,? extends Feature> featureCollection, String fromMeasureAttb, String toMeasureAttb, Double measure)Process the input data set.FeatureCollection<? extends FeatureType,? extends Feature>LRSMeasureProcess. execute(FeatureCollection<? extends FeatureType,? extends Feature> featureCollection, String fromMeasureAttb, String toMeasureAttb, Point point, CoordinateReferenceSystem crs)Process the input data set.FeatureCollection<? extends FeatureType,? extends Feature>LRSSegmentProcess. execute(FeatureCollection<? extends FeatureType,? extends Feature> featureCollection, String fromMeasureAttb, String toMeasureAttb, Double fromMeasure, Double toMeasure)Process the input data set.FeatureCollectionNearestProcess. execute(FeatureCollection featureCollection, Point point, CoordinateReferenceSystem crs)Process the input data set.FeatureCollectionSnapProcess. execute(FeatureCollection featureCollection, Point point, CoordinateReferenceSystem crs)Process the input data set.Methods in org.geotools.process.vector with parameters of type FeatureCollection Modifier and Type Method Description SimpleFeatureCollectionContours. contour(FeatureCollection features, String elevation)ReferencedEnvelopeBoundsProcess. execute(FeatureCollection features)GeometryCollectionCollectGeometries. execute(FeatureCollection features, ProgressListener progressListener)SimpleFeatureCollectionContourProcess. execute(FeatureCollection features, String propertyName, double[] levels, Double interval, Boolean simplify, Boolean smooth, ProgressListener progressListener)FeatureClassStats.ResultsFeatureClassStats. execute(FeatureCollection features, String attribute, Set<Statistic> stats, Integer classes, ClassificationMethod method, Double noData, ProgressListener progressListener)FeatureCollectionGroupCandidateSelectionProcess. execute(FeatureCollection<? extends FeatureType,? extends Feature> features, String aggregation, String operationAttribute, List<String> groupingAttributes)FeatureCollection<? extends FeatureType,? extends Feature>LRSGeocodeProcess. execute(FeatureCollection<? extends FeatureType,? extends Feature> featureCollection, String fromMeasureAttb, String toMeasureAttb, Double measure)Process the input data set.FeatureCollection<? extends FeatureType,? extends Feature>LRSMeasureProcess. execute(FeatureCollection<? extends FeatureType,? extends Feature> featureCollection, String fromMeasureAttb, String toMeasureAttb, Point point, CoordinateReferenceSystem crs)Process the input data set.FeatureCollection<? extends FeatureType,? extends Feature>LRSSegmentProcess. execute(FeatureCollection<? extends FeatureType,? extends Feature> featureCollection, String fromMeasureAttb, String toMeasureAttb, Double fromMeasure, Double toMeasure)Process the input data set.FeatureCollectionNearestProcess. execute(FeatureCollection featureCollection, Point point, CoordinateReferenceSystem crs)Process the input data set.FeatureCollectionSnapProcess. execute(FeatureCollection featureCollection, Point point, CoordinateReferenceSystem crs)Process the input data set. -
Uses of FeatureCollection in org.geotools.renderer
Methods in org.geotools.renderer with parameters of type FeatureCollection Modifier and Type Method Description voidRenderer. render(FeatureCollection<? extends FeatureType,? extends Feature> fc, Envelope viewport, Style style)Renders the provided features using the specified style. -
Uses of FeatureCollection in org.geotools.renderer.lite
Classes in org.geotools.renderer.lite that implement FeatureCollection Modifier and Type Class Description classIndexedFeatureResultsIndexedFeatureReader -
Uses of FeatureCollection in org.geotools.wfs
Classes in org.geotools.wfs that implement FeatureCollection Modifier and Type Class Description classCompositeFeatureCollectionWraps multiple feature collections into a single.Constructors in org.geotools.wfs with parameters of type FeatureCollection Constructor Description PropertyValueCollection(FeatureCollection delegate, AttributeDescriptor descriptor, PropertyName propName)Constructor parameters in org.geotools.wfs with type arguments of type FeatureCollection Constructor Description CompositeFeatureCollection(List<FeatureCollection> collections) -
Uses of FeatureCollection in org.geotools.wfs.bindings
Methods in org.geotools.wfs.bindings that return types with arguments of type FeatureCollection Modifier and Type Method Description static List<FeatureCollection>WFSParsingUtils. features(EObject obj) -
Uses of FeatureCollection in org.geotools.xml.gml
Classes in org.geotools.xml.gml that implement FeatureCollection Modifier and Type Class Description classGMLFeatureCollection
-