Uses of Interface
org.apache.sis.storage.FeatureSet
Packages that use FeatureSet
Package
Description
Widgets about data store resources and their metadata.
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.gui.dataset
Fields in org.apache.sis.gui.dataset with type parameters of type FeatureSetModifier and TypeFieldDescriptionfinal ObjectProperty<FeatureSet>
FeatureTable.featuresProperty
The data shown in this table.Methods in org.apache.sis.gui.dataset that return FeatureSetModifier and TypeMethodDescriptionfinal FeatureSet
FeatureTable.getFeatures()
Returns the source of features for this table.Methods in org.apache.sis.gui.dataset with parameters of type FeatureSetModifier and TypeMethodDescriptionfinal void
FeatureTable.setFeatures
(FeatureSet features) Sets the features to show in this table. -
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.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. -
Uses of FeatureSet in org.apache.sis.storage.aggregate
Classes in org.apache.sis.storage.aggregate that implement FeatureSetModifier and TypeClassDescriptionclass
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.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 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
.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.