Package org.geotools.filter.spatial
Class BBOX3DImpl
Object
BBOX3DImpl
- All Implemented Interfaces:
Filter
,MultiValuedFilter
,BBOX
,BBOX3D
,BinarySpatialOperator
,SpatialOperator
A 3D BBOX Filter Implementation Supports filtering with BBOXes that have 3D coordinates including a minimum and
maximum for the z-axis.
- Author:
- Niels Charlier
-
Nested Class Summary
Nested classes/interfaces inherited from interface MultiValuedFilter
MultiValuedFilter.MatchAction
-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionBBOX3DImpl
(PropertyName propertyName, ReferencedEnvelope3D env, FilterFactory factory) -
Method Summary
Modifier and TypeMethodDescriptionaccept
(FilterVisitor visitor, Object context) Accepts a visitor.boolean
contains
(SimpleFeature feature) boolean
Give an object, this method determines if the test(s) represented by this filter object are passed.boolean
evaluate
(SimpleFeature feature) get3DEnvelope
(Geometry geom) Return 3D Bounding Box object representing the bounds of the filter @Return Bounds of FilterReturns an expression that will be evaluated to determine the first operand to the spatial predicate represented by this operator.Returns an expression that will be evaluated to determine the second operand to the spatial predicate represented by this operator.* Flag Controlling MatchAction property When one or more of the operands evaluates to multiple values rather than a single value, which action should be taken?boolean
toString()
-
Constructor Details
-
BBOX3DImpl
-
-
Method Details
-
getProperty
-
getPropertyName
-
getBounds
Description copied from interface:BBOX3D
Return 3D Bounding Box object representing the bounds of the filter @Return Bounds of Filter -
getExpression1
Description copied from interface:BinarySpatialOperator
Returns an expression that will be evaluated to determine the first operand to the spatial predicate represented by this operator. The result of evaluating this expression must be a geometry object.- Specified by:
getExpression1
in interfaceBinarySpatialOperator
-
getExpression2
Description copied from interface:BinarySpatialOperator
Returns an expression that will be evaluated to determine the second operand to the spatial predicate represented by this operator. The result of evaluating this expression must be a geometry object.- Specified by:
getExpression2
in interfaceBinarySpatialOperator
-
accept
Description copied from interface:Filter
Accepts a visitor.Implementations of all subinterfaces must have with a method whose content is the following:
return visitor.visit(this, extraData);
-
get3DEnvelope
-
evaluate
Description copied from interface:Filter
Give an object, this method determines if the test(s) represented by this filter object are passed.This ability is used to allow Queries against both Features and and non spatial data (such as Record) and to express constraints on permissable data values.
-
isMatchingCase
public boolean isMatchingCase() -
contains
-
evaluate
-
getMatchAction
Description copied from interface:MultiValuedFilter
* Flag Controlling MatchAction property When one or more of the operands evaluates to multiple values rather than a single value, which action should be taken? If there are n values for the left operand and m values for the right operand, there are n * m possible combinations that can be compared,ANY - if any of the possible combinations match, the result is true (aggregated OR) ALL - only if all of the possible combinations match, the result is true (aggregated AND) ONE - only if exactly one of the possible combinations match, the result is true (aggregated XOR)
- Specified by:
getMatchAction
in interfaceMultiValuedFilter
- Returns:
- MatchAction flag
-
toString
-