Package org.geotools.api.filter
Interface PropertyIsBetween
- All Superinterfaces:
Filter
,MultiValuedFilter
- All Known Implementing Classes:
IsBetweenImpl
A compact way of encoding a range check.
The lower and upper boundary values are inclusive.
- Since:
- GeoAPI 2.0
- Author:
- Chris Dillard (SYS Technologies)
-
Nested Class Summary
Nested classes/interfaces inherited from interface MultiValuedFilter
MultiValuedFilter.MatchAction
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
Operator name used to check FilterCapabilities -
Method Summary
Modifier and TypeMethodDescriptionReturns the expression to be compared by this operator.Returns the lower bounds (inclusive) an an expression.Returns the upper bounds (inclusive) as an expression.Methods inherited from interface MultiValuedFilter
getMatchAction
-
Field Details
-
NAME
Operator name used to check FilterCapabilities- See Also:
-
-
Method Details
-
getExpression
Expression getExpression()Returns the expression to be compared by this operator. -
getLowerBoundary
Expression getLowerBoundary()Returns the lower bounds (inclusive) an an expression. -
getUpperBoundary
Expression getUpperBoundary()Returns the upper bounds (inclusive) as an expression.
-