Package org.geotools.api.filter.temporal
Interface BinaryTemporalOperator
-
- All Superinterfaces:
Filter
,MultiValuedFilter
- All Known Subinterfaces:
After
,AnyInteracts
,Before
,Begins
,BegunBy
,During
,EndedBy
,Ends
,Meets
,MetBy
,OverlappedBy
,TContains
,TEquals
,TOverlaps
- All Known Implementing Classes:
AfterImpl
,AnyInteractsImpl
,BeforeImpl
,BeginsImpl
,BegunByImpl
,BinaryTemporalOperatorImpl
,DuringImpl
,EndedByImpl
,EndsImpl
,MeetsImpl
,MetByImpl
,OverlappedByImpl
,TContainsImpl
,TEqualsImpl
,TOverlapsImpl
public interface BinaryTemporalOperator extends MultiValuedFilter
Base interface for all temporal filter operators.- Since:
- 8.0
- Author:
- Justin Deoliveira, OpenGeo
-
-
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
getExpression1()
Returns the first of the two expressions to be compared by this operator.Expression
getExpression2()
Returns the second of the two expressions to be compared by this operator.-
Methods inherited from interface MultiValuedFilter
getMatchAction
-
-
-
-
Method Detail
-
getExpression1
Expression getExpression1()
Returns the first of the two expressions to be compared by this operator.
-
getExpression2
Expression getExpression2()
Returns the second of the two expressions to be compared by this operator.
-
-