Singleton
caplin.grid.filter.FieldFilterExpression

Operator

Singleton that provides all of the valid operator values that can be passed into the caplin.grid.filter.FieldFilterExpression's constructor.

Constructor Summary

Attributes Name and Description
caplin.grid.filter.FieldFilterExpression.Operator()

Field Summary

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.

Constructor Detail

caplin.grid.filter.FieldFilterExpression.Operator()

Field Detail

<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 "~".