Attributes | Name and Description |
---|---|
|
caplin.grid.filter.FieldFilterExpression.Operator()
|
Attributes | Name and Description |
---|---|
<static>
|
caplin.grid.filter.FieldFilterExpression.Operator.CASE_INSENSITIVE_REGULAR_EXPRESSION
Operator used to check that a string field matches a particular regular expression where an exact case match is not necessary. |
<static>
|
caplin.grid.filter.FieldFilterExpression.Operator.EQUAL
Operator used to check for an exact match between a field and a value. |
<static>
|
caplin.grid.filter.FieldFilterExpression.Operator.GREATER_THAN
Operator used to check that a numeric field is greater than a particular value. |
<static>
|
caplin.grid.filter.FieldFilterExpression.Operator.GREATER_THAN_OR_EQUAL
Operator used to check that a numeric field is greater than or equal to a particular value. |
<static>
|
caplin.grid.filter.FieldFilterExpression.Operator.LESS_THAN
Operator used to check that a numeric field is less than a particular value. |
<static>
|
caplin.grid.filter.FieldFilterExpression.Operator.LESS_THAN_OR_EQUAL
Operator used to check that a numeric field is less than or equal to a value. |
<static>
|
caplin.grid.filter.FieldFilterExpression.Operator.NOT_EQUAL
Operator used to check that a field does not match a particular value. |
<static>
|
caplin.grid.filter.FieldFilterExpression.Operator.NUMERIC_EQUAL
Operator used to check for a numeric match between a field and a value. |
<static>
|
caplin.grid.filter.FieldFilterExpression.Operator.NUMERIC_NOT_EQUAL
Operator used to check for a numeric match between a field and a value not to be equal. |
<static>
|
caplin.grid.filter.FieldFilterExpression.Operator.REGULAR_EXPRESSION
Operator used to check that a string field matches a particular regular expression. |
►
caplin.grid.filter.FieldFilterExpression.Operator()
►
<static>
String
caplin.grid.filter.FieldFilterExpression.Operator.CASE_INSENSITIVE_REGULAR_EXPRESSION
Operator used to check that a string field matches a particular regular expression where an exact case match is not necessary.
The value of this operator is "#
".
►
<static>
String
caplin.grid.filter.FieldFilterExpression.Operator.EQUAL
Operator used to check for an exact match between a field and a value. This can be used for both string and numeric based values.
The value of this operator is "=
".
►
<static>
String
caplin.grid.filter.FieldFilterExpression.Operator.GREATER_THAN
Operator used to check that a numeric field is greater than a particular value.
The value of this operator is ">
".
►
<static>
String
caplin.grid.filter.FieldFilterExpression.Operator.GREATER_THAN_OR_EQUAL
Operator used to check that a numeric field is greater than or equal to a particular value.
The value of this operator is ">=
".
►
<static>
String
caplin.grid.filter.FieldFilterExpression.Operator.LESS_THAN
Operator used to check that a numeric field is less than a particular value.
The value of this operator is "<
".
►
<static>
String
caplin.grid.filter.FieldFilterExpression.Operator.LESS_THAN_OR_EQUAL
Operator used to check that a numeric field is less than or equal to a value.
The value of this operator is "<=
".
►
<static>
String
caplin.grid.filter.FieldFilterExpression.Operator.NOT_EQUAL
Operator used to check that a field does not match a particular value. This can be used for both string and numeric based values.
The value of this operator is "!=
".
►
<static>
String
caplin.grid.filter.FieldFilterExpression.Operator.NUMERIC_EQUAL
Operator used to check for a numeric match between a field and a value. This can be used for numeric value only, and unlike a normal equals, entering 5.000 will match a value of 5, whereas it won't with the generic equals operator.
The value of this operator is "==
".
►
<static>
String
caplin.grid.filter.FieldFilterExpression.Operator.NUMERIC_NOT_EQUAL
Operator used to check for a numeric match between a field and a value not to be equal. This can be used for numeric value only, and unlike a normal equals, entering 5.000 will match a value of 5, whereas it won't with the generic equals operator.
The value of this operator is "!==
".
►
<static>
String
caplin.grid.filter.FieldFilterExpression.Operator.REGULAR_EXPRESSION
Operator used to check that a string field matches a particular regular expression.
The value of this operator is "~
".