Class FeatureQuery
- All Implemented Interfaces:
Serializable
,Cloneable
,Emptiable
Definition of filtering to apply for fetching a subset of
FeatureSet
.
This query mimics SQL SELECT
statements using OGC Filter and Expressions.
Information stored in this query can be used directly with Stream
API.
Terminology
This class uses relational database terminology:- A selection is a filter choosing the features instances to include in the subset. In relational databases, a feature instances are mapped to table rows.
- A projection (not to be confused with map projection) is the set of feature properties to keep. In relational databases, feature properties are mapped to table columns.
Optional values
All aspects of this query are optional and initialized to "none". Unless otherwise specified, all methods accept a null argument or can return a null value, which means "none".- Since:
- 1.1
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class
An expression to be retrieved by aQuery
, together with the name to assign to it.static enum
Whether a property evaluated by a query is computed on the fly or stored. -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new query applying no filter.FeatureQuery
(FeatureQuery other) Creates a new query initialized to the same values than the given query. -
Method Summary
Modifier and TypeMethodDescriptionclone()
Returns a clone of this query.boolean
Compares this query with the given object for equality.protected FeatureSet
execute
(FeatureSet source) Applies this query on the given feature set.Returns the maximum number of feature instances contained in theFeatureSet
.Returns the desired spatial resolution of geometries.long
Returns the number of feature instances to skip from the beginning.Returns the properties to retrieve, ornull
if all properties shall be included in the query.Filter
<? super AbstractFeature> Returns the filter for trimming feature instances.Returns all XPaths used, directly or indirectly, by this query.int
Returns a hash code value for this query.boolean
isEmpty()
Returnstrue
if this query do not specify any filtering.protected void
optimize
(FeatureSet source) Optimizes this query before execution.void
setLimit
(long limit) Set the maximum number of feature instances contained in theFeatureSet
.void
setLinearResolution
(Quantity<Length> linearResolution) Sets the desired spatial resolution of geometries.void
setOffset
(long skip) Sets the number of feature instances to skip from the beginning.void
setProjection
(String... properties) Sets the properties to retrieve by their names.final void
setProjection
(Expression<? super AbstractFeature, ?>... properties) Sets the properties to retrieve, ornull
if all properties shall be included in the query.void
setProjection
(FeatureQuery.NamedExpression... properties) Sets the properties to retrieve, ornull
if all properties shall be included in the query.void
setSelection
(Filter<? super AbstractFeature> selection) Sets a filter for trimming feature instances.void
setSelection
(Envelope domain) Sets the approximate area of feature instances to include in the subset.void
Removes any limit defined bysetLimit(long)
.Returns a textual representation of this query for debugging purposes.
-
Constructor Details
-
FeatureQuery
public FeatureQuery()Creates a new query applying no filter. -
FeatureQuery
Creates a new query initialized to the same values than the given query. This is an alternative to theclone()
method when the caller wants to change the implementation class.- Parameters:
other
- the other query from which to copy the configuration.- Since:
- 1.5
- See Also:
-
-
Method Details
-
isEmpty
-
setProjection
Sets the properties to retrieve by their names. This convenience method wraps the given names inValueReference
expressions without alias and delegates tosetProjection(NamedExpression...)
.- Specified by:
setProjection
in classQuery
- Parameters:
properties
- properties to retrieve, ornull
to retrieve all properties.- Throws:
IllegalArgumentException
- if the given array is empty of if a property is duplicated.
-
setProjection
Sets the properties to retrieve, ornull
if all properties shall be included in the query. This convenience method wraps the given expression inFeatureQuery.NamedExpression
s without alias and delegates tosetProjection(NamedExpression...)
.- Parameters:
properties
- properties to retrieve, ornull
to retrieve all properties.- Throws:
IllegalArgumentException
- if the given array is empty of if a property is duplicated.
-
setProjection
Sets the properties to retrieve, ornull
if all properties shall be included in the query. A query column may use a simple or complex expression and an alias to create a new type of property in the returned features.This is equivalent to the column names in the
SELECT
clause of a SQL statement. Subset of columns is called projection in relational database terminology.- Parameters:
properties
- properties to retrieve, ornull
to retrieve all properties.- Throws:
IllegalArgumentException
- if a property or an alias is duplicated.
-
getProjection
Returns the properties to retrieve, ornull
if all properties shall be included in the query. This is the expressions specified in the last call tosetProjection(NamedExpression[])
. The default value is null.- Returns:
- properties to retrieve, or
null
to retrieve all feature properties.
-
setSelection
Sets the approximate area of feature instances to include in the subset. This convenience method creates a filter that checks if the bounding box of the feature's"sis:geometry"
property interacts with the given envelope.- Specified by:
setSelection
in classQuery
- Parameters:
domain
- the approximate area of interest, ornull
if none.
-
setSelection
Sets a filter for trimming feature instances. Features that do not pass the filter are discarded. Discarded features are not counted for the query limit.- Parameters:
selection
- the filter, ornull
if none.
-
getSelection
Returns the filter for trimming feature instances. This is the value specified in the last call tosetSelection(Filter)
. The default value isnull
, which means that no filtering is applied.- Returns:
- the filter, or
null
if none.
-
setOffset
public void setOffset(long skip) Sets the number of feature instances to skip from the beginning. Offset and limit are often combined to obtain paging. The offset cannot be negative.Note that setting this property can be costly on parallelized streams. See
Stream.skip(long)
for more information.- Parameters:
skip
- the number of feature instances to skip from the beginning.
-
getOffset
public long getOffset()Returns the number of feature instances to skip from the beginning. This is the value specified in the last call tosetOffset(long)
. The default value is zero, which means that no features are skipped.- Returns:
- the number of feature instances to skip from the beginning.
-
setUnlimited
public void setUnlimited()Removes any limit defined bysetLimit(long)
. -
setLimit
public void setLimit(long limit) Set the maximum number of feature instances contained in theFeatureSet
. Offset and limit are often combined to obtain paging.Note that setting this property can be costly on parallelized streams. See
Stream.limit(long)
for more information.- Parameters:
limit
- maximum number of feature instances contained in theFeatureSet
.
-
getLimit
Returns the maximum number of feature instances contained in theFeatureSet
. This is the value specified in the last call tosetLimit(long)
.- Returns:
- maximum number of feature instances contained in the
FeatureSet
, or empty if none.
-
setLinearResolution
-
getLinearResolution
-
getXPaths
Returns all XPaths used, directly or indirectly, by this query. The XPath values are extracted from allValueReference
expressions found in the selection and in the projection. The aliases are ignored.The elements in the returned set are in no particular order. The set may be empty but never null.
- Returns:
- all XPaths used, directly or indirectly, by this query.
- Since:
- 1.5
-
execute
Applies this query on the given feature set. This method is invoked by the default implementation ofFeatureSet.subset(Query)
. The default implementation executes the query using the defaultStream
methods. Queries executed by this method may not benefit from accelerations provided for example by databases. This method should be used only as a fallback when the query cannot be executed natively byFeatureSet.subset(Query)
.The returned
FeatureSet
does not cache the resultingFeature
instances; the query is processed on every call to theFeatureSet.features(boolean)
method.- Parameters:
source
- the set of features to filter, sort or process.- Returns:
- a view over the given feature set containing only the filtered feature instances.
- Throws:
DataStoreException
- if an error occurred during creation of the subset.- Since:
- 1.2
- See Also:
-
optimize
Optimizes this query before execution. This method is invoked byexecute(FeatureSet)
on a clone of the user-provided query. The default implementations tries to optimize the selection filter usingOptimization
. Subclasses can override for modifying the optimization algorithm.- Parameters:
source
- the set of features given to theexecute(FeatureSet)
method.- Throws:
DataStoreException
- if an error occurred during the optimization of this query.- Since:
- 1.5
-
clone
Returns a clone of this query. -
hashCode
-
equals
-
toString
-