Package org.geotools.api.filter
Interface PropertyIsBetween
-
- All Superinterfaces:
Filter
,MultiValuedFilter
- All Known Implementing Classes:
IsBetweenImpl
public interface PropertyIsBetween extends MultiValuedFilter
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
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Expression
getExpression()
Returns the expression to be compared by this operator.Expression
getLowerBoundary()
Returns the lower bounds (inclusive) an an expression.Expression
getUpperBoundary()
Returns the upper bounds (inclusive) as an expression.-
Methods inherited from interface MultiValuedFilter
getMatchAction
-
-
-
-
Field Detail
-
NAME
static final String NAME
Operator name used to check FilterCapabilities- See Also:
- Constant Field Values
-
-
Method Detail
-
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.
-
-