public class BeforeEvaluatorDefinition extends Object implements EvaluatorDefinition
The implementation of the 'before' evaluator definition.
The before
evaluator correlates two events and matches when the temporal
distance from the event being correlated to the current correlated belongs to the distance range declared
for the operator.
Lets look at an example:
$eventA : EventA( this before[ 3m30s, 4m ] $eventB )
The previous pattern will match if and only if the temporal distance between the time when $eventA finished and the time when $eventB started is between ( 3 minutes and 30 seconds ) and ( 4 minutes ). In other words:
3m30s <= $eventB.startTimestamp - $eventA.endTimeStamp <= 4m
The temporal distance interval for the before
operator is optional:
NOTE: it is allowed to define negative distances for this operator. Example:
$eventA : EventA( this before[ -3m30s, -2m ] $eventB )
NOTE: if the initial value is greater than the finish value, the engine automatically reverse them, as there is no reason to have the initial value greater than the finish value. Example: the following two patterns are considered to have the same semantics:
$eventA : EventA( this before[ -3m30s, -2m ] $eventB ) $eventA : EventA( this before[ -2m, -3m30s ] $eventB )
Modifier and Type | Class and Description |
---|---|
static class |
BeforeEvaluatorDefinition.BeforeEvaluator
Implements the 'before' evaluator itself
|
EvaluatorDefinition.Target
Modifier and Type | Field and Description |
---|---|
static Operator |
BEFORE |
static String |
beforeOp |
static Operator |
NOT_BEFORE |
Constructor and Description |
---|
BeforeEvaluatorDefinition() |
Modifier and Type | Method and Description |
---|---|
Evaluator |
getEvaluator(ValueType type,
Operator operator)
Returns the evaluator instance for the given type and the
defined parameterText
|
Evaluator |
getEvaluator(ValueType type,
Operator operator,
String parameterText)
Returns the evaluator instance for the given type and the
defined parameterText
|
Evaluator |
getEvaluator(ValueType type,
String operatorId,
boolean isNegated,
String parameterText)
Returns the evaluator instance for the given type and the
defined parameterText
|
Evaluator |
getEvaluator(ValueType type,
String operatorId,
boolean isNegated,
String parameterText,
EvaluatorDefinition.Target left,
EvaluatorDefinition.Target right)
Returns the evaluator instance for the given type and the
defined parameterText
|
String[] |
getEvaluatorIds()
Returns the list of identifies this
evaluator implementation supports
|
EvaluatorDefinition.Target |
getTarget()
There are evaluators that operate on *fact* attributes,
evaluators that operate on *fact handle* attributes, and
evaluators that operate on both.
|
boolean |
isNegatable()
My apologies to English speakers if the word "negatable" does not
exist. :)
This method returns true if this evaluator supports negation.
|
void |
readExternal(ObjectInput in) |
boolean |
supportsType(ValueType type)
Returns true in case this evaluator supports operations over values
of that specific type.
|
void |
writeExternal(ObjectOutput out) |
public static final String beforeOp
public static Operator BEFORE
public static Operator NOT_BEFORE
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
readExternal
in interface Externalizable
IOException
ClassNotFoundException
public void writeExternal(ObjectOutput out) throws IOException
writeExternal
in interface Externalizable
IOException
public Evaluator getEvaluator(ValueType type, Operator operator)
EvaluatorDefinition
type
- the type of the attributes this evaluator will
operate on. This is important because the evaluator
may do optimisations and type coercion based on the
types it is evaluating. It is also possible that
this evaluator does not support a given type.operator
- the operator implemented by the evaluatorpublic Evaluator getEvaluator(ValueType type, Operator operator, String parameterText)
EvaluatorDefinition
type
- the type of the attributes this evaluator will
operate on. This is important because the evaluator
may do optimisations and type coercion based on the
types it is evaluating. It is also possible that
this evaluator does not support a given type.operator
- the operator implemented by the evaluatorparameterText
- some evaluators support parameters and these
parameters are defined as a String that is
parsed by the evaluator itself.public Evaluator getEvaluator(ValueType type, String operatorId, boolean isNegated, String parameterText)
EvaluatorDefinition
type
- the type of the attributes this evaluator will
operate on. This is important because the evaluator
may do optimisations and type coercion based on the
types it is evaluating. It is also possible that
this evaluator does not support a given type.operatorId
- the string identifier of the evaluatorisNegated
- true if the evaluator instance to be returned is
the negated version of the evaluator.parameterText
- some evaluators support parameters and these
parameters are defined as a String that is
parsed by the evaluator itself.public Evaluator getEvaluator(ValueType type, String operatorId, boolean isNegated, String parameterText, EvaluatorDefinition.Target left, EvaluatorDefinition.Target right)
EvaluatorDefinition
type
- the type of the attributes this evaluator will
operate on. This is important because the evaluator
may do optimisations and type coercion based on the
types it is evaluating. It is also possible that
this evaluator does not support a given type.operatorId
- the string identifier of the evaluatorisNegated
- true if the evaluator instance to be returned is
the negated version of the evaluator.parameterText
- some evaluators support parameters and these
parameters are defined as a String that is
parsed by the evaluator itself.left
- the target of the evaluator on the Left side,
i.e., on Rete terms, the previous binding or
the actual value on the right side of the operator.right
- the target of the evaluator on the Right side,
i.e., on Rete terms, the current pattern field.public String[] getEvaluatorIds()
EvaluatorDefinition
public boolean isNegatable()
EvaluatorDefinition
public EvaluatorDefinition.Target getTarget()
EvaluatorDefinition
public boolean supportsType(ValueType type)
EvaluatorDefinition
Copyright © 2001–2016 JBoss by Red Hat. All rights reserved.