Interface TemporalPredicate
-
- All Known Implementing Classes:
AbstractTemporalPredicate,AfterPredicate,BeforePredicate,CoincidesPredicate,DuringPredicate,FinishedbyPredicate,FinishesPredicate,IncludesPredicate,MeetsPredicate,MetbyPredicate,OverlappedbyPredicate,OverlapsPredicate,StartedbyPredicate,StartsPredicate
public interface TemporalPredicate
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanevaluate(long start1, long duration1, long end1, long start2, long duration2, long end2)IntervalgetInterval()booleanisNegated()booleanisThisOnRight()TemporalPredicatenegate()TemporalPredicatethisOnRight()
-
-
-
Method Detail
-
evaluate
boolean evaluate(long start1, long duration1, long end1, long start2, long duration2, long end2)
-
getInterval
Interval getInterval()
-
isNegated
boolean isNegated()
-
negate
TemporalPredicate negate()
-
isThisOnRight
boolean isThisOnRight()
-
thisOnRight
TemporalPredicate thisOnRight()
-
-