Uses of Interface
org.apache.sis.storage.FeatureSet
Packages that use FeatureSet
Package
Description
Build
DefaultFeatureType
s by inspection of database schemas.Utility classes for the implementation of SIS storage classes.
DataStore
implementation for Coma Separated Values (CSV) files.Reads and writes data in GPS Exchange Format (GPX).
Helper classes for reading and writing XML documents using StAX (Streaming API for XML).
Data store base types for retrieving and saving geospatial data
in various storage formats.
Resources which are aggregations or concatenations of other resources.
Data store capable to read and create features from a JDBC connection to a database.
-
Uses of FeatureSet in org.apache.sis.internal.sql.feature
Classes in org.apache.sis.internal.sql.feature that implement FeatureSetModifier and TypeClassDescription(package private) final class
Description of a table in the database, including columns, primary keys and foreigner keys.Methods in org.apache.sis.internal.sql.feature that return FeatureSetMethods in org.apache.sis.internal.sql.feature that return types with arguments of type FeatureSetModifier and TypeMethodDescriptionfinal List<FeatureSet>
Database.tables()
Returns all tables in declaration order. -
Uses of FeatureSet in org.apache.sis.internal.storage
Classes in org.apache.sis.internal.storage that implement FeatureSetMethods in org.apache.sis.internal.storage with parameters of type FeatureSetModifier and TypeMethodDescriptionstatic void
StoreUtilities.copy
(FeatureSet source, WritableFeatureSet target) Copies all feature from the given source to the given target. -
Uses of FeatureSet in org.apache.sis.internal.storage.csv
Classes in org.apache.sis.internal.storage.csv that implement FeatureSetModifier and TypeClassDescription(package private) final class
A data store which creates feature instances from a CSV file using the OGC Moving Features specification. -
Uses of FeatureSet in org.apache.sis.internal.storage.gpx
Classes in org.apache.sis.internal.storage.gpx that implement FeatureSetModifier and TypeClassDescriptionclass
A data store backed by GPX files.final class
A GPX store capable to write GPX file. -
Uses of FeatureSet in org.apache.sis.internal.storage.xml.stream
Fields in org.apache.sis.internal.storage.xml.stream declared as FeatureSetModifier and TypeFieldDescriptionprotected final FeatureSet
RewriteOnUpdate.source
The set of features to update.Constructors in org.apache.sis.internal.storage.xml.stream with parameters of type FeatureSetModifierConstructorDescriptionRewriteOnUpdate
(FeatureSet source, Path location) Creates an updater for the given source of features. -
Uses of FeatureSet in org.apache.sis.storage
Subinterfaces of FeatureSet in org.apache.sis.storageClasses in org.apache.sis.storage that implement FeatureSetModifier and TypeClassDescriptionclass
Default implementations of several methods for classes that want to implement theFeatureSet
interface.(package private) final class
The result ofFeatureQuery.execute(FeatureSet)
executed using JavaStream
methods.Fields in org.apache.sis.storage declared as FeatureSetModifier and TypeFieldDescriptionprivate final FeatureSet
FeatureSubset.source
The set of feature instances to filter, sort or process.Methods in org.apache.sis.storage that return FeatureSetModifier and TypeMethodDescriptionprotected FeatureSet
FeatureQuery.execute
(FeatureSet source) Applies this query on the given feature set.default FeatureSet
Requests a subset of features and/or feature properties from this resource.Methods in org.apache.sis.storage with parameters of type FeatureSetModifier and TypeMethodDescriptionprotected FeatureSet
FeatureQuery.execute
(FeatureSet source) Applies this query on the given feature set.Constructors in org.apache.sis.storage with parameters of type FeatureSetModifierConstructorDescription(package private)
FeatureSubset
(FeatureSet source, FeatureQuery query) Creates a new set of features by filtering the given set using the given query. -
Uses of FeatureSet in org.apache.sis.storage.aggregate
Classes in org.apache.sis.storage.aggregate that implement FeatureSetModifier and TypeClassDescription(package private) class
A feature set made from the aggregation of other feature sets.class
Exposes a sequence ofFeatureSet
s as a single one.class
Features containing association to features from two different sources, joined by a SQL-likeJOIN
condition.Fields in org.apache.sis.storage.aggregate declared as FeatureSetModifier and TypeFieldDescriptionfinal FeatureSet
JoinFeatureSet.left
The first source of features.final FeatureSet
JoinFeatureSet.right
The second source of features.Fields in org.apache.sis.storage.aggregate with type parameters of type FeatureSetModifier and TypeFieldDescriptionprivate final List<FeatureSet>
ConcatenatedFeatureSet.sources
The sequence of feature sets whose feature instances will be returned.Methods in org.apache.sis.storage.aggregate that return FeatureSetModifier and TypeMethodDescriptionstatic FeatureSet
ConcatenatedFeatureSet.create
(Collection<? extends FeatureSet> sources) Creates a new feature set as a concatenation of the sequence of features given by thesources
.static FeatureSet
ConcatenatedFeatureSet.create
(FeatureSet... sources) Creates a new feature set as a concatenation of the sequence of features given by thesources
.Requests a subset of features and/or feature properties from this resource.Methods in org.apache.sis.storage.aggregate that return types with arguments of type FeatureSetModifier and TypeMethodDescription(package private) abstract Collection<FeatureSet>
AggregatedFeatureSet.dependencies()
Returns all feature set used by this aggregation.(package private) final List<FeatureSet>
ConcatenatedFeatureSet.dependencies()
Returns all feature set used by this aggregation.(package private) final List<FeatureSet>
JoinFeatureSet.dependencies()
Returns the two feature sets used by thisJoinFeatureSet
.Methods in org.apache.sis.storage.aggregate with parameters of type FeatureSetModifier and TypeMethodDescriptionstatic FeatureSet
ConcatenatedFeatureSet.create
(FeatureSet... sources) Creates a new feature set as a concatenation of the sequence of features given by thesources
.Method parameters in org.apache.sis.storage.aggregate with type arguments of type FeatureSetModifier and TypeMethodDescriptionstatic FeatureSet
ConcatenatedFeatureSet.create
(Collection<? extends FeatureSet> sources) Creates a new feature set as a concatenation of the sequence of features given by thesources
.Constructors in org.apache.sis.storage.aggregate with parameters of type FeatureSetModifierConstructorDescriptionprotected
ConcatenatedFeatureSet
(StoreListeners parent, FeatureSet[] sources) Creates a new feature set as a concatenation of the sequence of features given by thesources
.private
ConcatenatedFeatureSet
(FeatureSet[] sources, ConcatenatedFeatureSet original) Creates a new concatenated feature set with the same types than the given feature set, but different sources.JoinFeatureSet
(StoreListeners parent, FeatureSet left, String leftAlias, FeatureSet right, String rightAlias, JoinFeatureSet.Type joinType, BinaryComparisonOperator<? super AbstractFeature> condition, Map<String, ?> featureInfo) Creates a new feature set joining the two given sets. -
Uses of FeatureSet in org.apache.sis.storage.sql
Methods in org.apache.sis.storage.sql that return FeatureSetModifier and TypeMethodDescriptionSQLStore.findResource
(String identifier) Searches for a resource identified by the given identifier.Methods in org.apache.sis.storage.sql that return types with arguments of type FeatureSetModifier and TypeMethodDescriptionSQLStore.components()
Returns the tables (feature sets) in this SQL store.