Package org.drools.mvel.evaluators
Class OverlapsEvaluatorDefinition
- java.lang.Object
-
- org.drools.mvel.evaluators.OverlapsEvaluatorDefinition
-
- All Implemented Interfaces:
java.io.Externalizable,java.io.Serializable,org.drools.compiler.rule.builder.EvaluatorDefinition,org.kie.api.runtime.rule.EvaluatorDefinition
public class OverlapsEvaluatorDefinition extends java.lang.Object implements org.drools.compiler.rule.builder.EvaluatorDefinitionThe implementation of the
overlapsevaluator definition.The
overlapsevaluator correlates two events and matches when the current event starts before the correlated event starts and finishes after the correlated event starts, but before the correlated event finishes. In other words, both events have an overlapping period.Lets look at an example:
$eventA : EventA( this overlaps $eventB )
The previous pattern will match if and only if:
$eventA.startTimestamp < $eventB.startTimestamp < $eventA.endTimestamp < $eventB.endTimestamp
The
overlapsoperator accepts 1 or 2 optional parameters as follow:- If one parameter is defined, this will be the maximum distance between the start timestamp of the correlated event and the end timestamp of the current event. Example:
$eventA : EventA( this overlaps[ 5s ] $eventB )
Will match if and only if:$eventA.startTimestamp < $eventB.startTimestamp < $eventA.endTimestamp < $eventB.endTimestamp && 0 <= $eventA.endTimestamp - $eventB.startTimestamp <= 5s
- If two values are defined, the first value will be the minimum distance and the second value will be the maximum distance between the start timestamp of the correlated event and the end timestamp of the current event. Example:
$eventA : EventA( this overlaps[ 5s, 10s ] $eventB )
Will match if and only if:$eventA.startTimestamp < $eventB.startTimestamp < $eventA.endTimestamp < $eventB.endTimestamp && 5s <= $eventA.endTimestamp - $eventB.startTimestamp <= 10s
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classOverlapsEvaluatorDefinition.OverlapsEvaluatorImplements the 'overlaps' evaluator itself
-
Field Summary
Fields Modifier and Type Field Description static org.drools.drl.parser.impl.OperatorOVERLAPSstatic org.drools.drl.parser.impl.OperatorOVERLAPS_NOTstatic java.lang.StringoverlapsOp
-
Constructor Summary
Constructors Constructor Description OverlapsEvaluatorDefinition()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.drools.base.rule.accessor.EvaluatorgetEvaluator(org.drools.base.base.ValueType type, java.lang.String operatorId, boolean isNegated, java.lang.String parameterText)org.drools.base.rule.accessor.EvaluatorgetEvaluator(org.drools.base.base.ValueType type, java.lang.String operatorId, boolean isNegated, java.lang.String parameterText, org.drools.compiler.rule.builder.EvaluatorDefinition.Target left, org.drools.compiler.rule.builder.EvaluatorDefinition.Target right)org.drools.base.rule.accessor.EvaluatorgetEvaluator(org.drools.base.base.ValueType type, org.drools.drl.parser.impl.Operator operator)org.drools.base.rule.accessor.EvaluatorgetEvaluator(org.drools.base.base.ValueType type, org.drools.drl.parser.impl.Operator operator, java.lang.String parameterText)java.lang.String[]getEvaluatorIds()org.drools.compiler.rule.builder.EvaluatorDefinition.TargetgetTarget()booleanisNegatable()voidreadExternal(java.io.ObjectInput in)booleansupportsType(org.drools.base.base.ValueType type)voidwriteExternal(java.io.ObjectOutput out)
-
-
-
Method Detail
-
readExternal
public void readExternal(java.io.ObjectInput in) throws java.io.IOException, java.lang.ClassNotFoundException- Specified by:
readExternalin interfacejava.io.Externalizable- Throws:
java.io.IOExceptionjava.lang.ClassNotFoundException
-
writeExternal
public void writeExternal(java.io.ObjectOutput out) throws java.io.IOException- Specified by:
writeExternalin interfacejava.io.Externalizable- Throws:
java.io.IOException
-
getEvaluator
public org.drools.base.rule.accessor.Evaluator getEvaluator(org.drools.base.base.ValueType type, org.drools.drl.parser.impl.Operator operator)- Specified by:
getEvaluatorin interfaceorg.drools.compiler.rule.builder.EvaluatorDefinition
-
getEvaluator
public org.drools.base.rule.accessor.Evaluator getEvaluator(org.drools.base.base.ValueType type, org.drools.drl.parser.impl.Operator operator, java.lang.String parameterText)- Specified by:
getEvaluatorin interfaceorg.drools.compiler.rule.builder.EvaluatorDefinition
-
getEvaluator
public org.drools.base.rule.accessor.Evaluator getEvaluator(org.drools.base.base.ValueType type, java.lang.String operatorId, boolean isNegated, java.lang.String parameterText)- Specified by:
getEvaluatorin interfaceorg.drools.compiler.rule.builder.EvaluatorDefinition
-
getEvaluator
public org.drools.base.rule.accessor.Evaluator getEvaluator(org.drools.base.base.ValueType type, java.lang.String operatorId, boolean isNegated, java.lang.String parameterText, org.drools.compiler.rule.builder.EvaluatorDefinition.Target left, org.drools.compiler.rule.builder.EvaluatorDefinition.Target right)- Specified by:
getEvaluatorin interfaceorg.drools.compiler.rule.builder.EvaluatorDefinition
-
getEvaluatorIds
public java.lang.String[] getEvaluatorIds()
- Specified by:
getEvaluatorIdsin interfaceorg.drools.compiler.rule.builder.EvaluatorDefinition
-
isNegatable
public boolean isNegatable()
- Specified by:
isNegatablein interfaceorg.drools.compiler.rule.builder.EvaluatorDefinition
-
getTarget
public org.drools.compiler.rule.builder.EvaluatorDefinition.Target getTarget()
- Specified by:
getTargetin interfaceorg.drools.compiler.rule.builder.EvaluatorDefinition
-
supportsType
public boolean supportsType(org.drools.base.base.ValueType type)
- Specified by:
supportsTypein interfaceorg.drools.compiler.rule.builder.EvaluatorDefinition
-
-