Interface | Description |
---|---|
IEvaluationOperator |
Interface specifying methods of evaluation operator implementations.
|
Class | Description |
---|---|
AbstractCollectionEvaluationOperator |
Base implementation for operators handling Collections from source.
|
AbstractEvaluationOperator |
Base implementation.
|
BETWEEN |
Ensures that source value is between 2 values.
|
COLDISJOINED |
Ensures that the provided Collections have no item in common.
|
COLEQ |
Compares Collection content WITHOUT taking order into account.
|
COLIN | |
COLINCLUDED |
Ensures that all elements in the provided source Collection are present in the reference Collection.
|
COLINCLUDES |
Ensures that all elements in the provided reference Collection are present in the source Collection.
|
COLINTERSECTS |
Ensures that the provided Collections at least one item in common.
|
COLNE |
Compares Collection content WITHOUT taking order into account.
|
COLNOTIN |
Inverts the result of
COLIN . |
CONTAINS |
Ensures that the provided source value is present in the reference Collection.
|
EMPTY |
Checks that source value is not null or empty (if accurate, for collections, arrays, maps, strings, ...).
|
EQ |
Ensures that the provided source and reference values are equal.
|
GT |
Ensures that the provided source value is greater than the reference values.
|
GTE |
Ensures that the provided source value is greater or equal than the reference values.
|
IN |
Ensures that the provided source value is present in the reference Collection.
|
LT |
Ensures that the provided source value is lesser than the reference values.
|
LTE |
Ensures that the provided source value is lesser or equal than the reference values.
|
MATCH |
Ensures that the provided source value matched the regular expression represented by the reference values.
|
NE |
Ensures that the provided source and reference values are different.
|
NOTCONTAINS |
Ensures that the provided source value is not present in the reference Collection.
|
NOTEMPTY |
Inverts
MATCH results. |
NOTIN |
Ensures that the provided source value is not present in the reference Collection.
|
NOTMATCH |
Inverts
MATCH results. |
NOTNULL |
Checks that source value is not null.
|
NULL |
Checks that source value is not null.
|