Class
caplin.grid.filter.LogicalFilterExpression

Operator

Represents a particular logical operation that can be performed by a caplin.grid.filter.LogicalFilterExpression.

Constructor Summary

Attributes Name and Description
caplin.grid.filter.LogicalFilterExpression.Operator(String sSymbol, String sDescription, String sTagName)

This constructor should never be invoked.

Field Summary

Attributes Name and Description
<static> caplin.grid.filter.LogicalFilterExpression.Operator.AND

Represents that a logical AND will be performed by the LogicalFilterExpression.

<static> caplin.grid.filter.LogicalFilterExpression.Operator.OR

Represents that a logical OR will be performed by the LogicalFilterExpression.

Constructor Detail

caplin.grid.filter.LogicalFilterExpression.Operator(String sSymbol, String sDescription, String sTagName)

This constructor should never be invoked. The #AND and #OR constants should be used instead.

Parameters
String sSymbol The symbol used for the operator within the expression syntax.
String sDescription A brief description of the operator.
String sTagName The tag name used to serialize the operator.

Field Detail

<static> caplin.grid.filter.LogicalFilterExpression.Operator caplin.grid.filter.LogicalFilterExpression.Operator.AND

Represents that a logical AND will be performed by the LogicalFilterExpression. A record will only be returned if it matches all of the expressions that have been added to it.

<static> caplin.grid.filter.LogicalFilterExpression.Operator caplin.grid.filter.LogicalFilterExpression.Operator.OR

Represents that a logical OR will be performed by the LogicalFilterExpression. A record will be returned if it matches at least one of the expressions that have been added to it.