Search
ComparisonOperator Enumeration
See Also
 






Specifies an operator for value comparison.

Namespace: com.mindfusion.spreadsheet
Package: com.mindfusion.spreadsheet

 Syntax

Java  Copy Code

public enum ComparisonOperator

 Members

  Member name Description

Between

Indicates that the left operand must be between the right operands.

Contain

Indicates that the left operand must contain the right operand.

Equal

Indicates that the left operand must be equal to the right operand.

GreaterThan

Indicates that the left operand must be greater than the right operand.

GreaterThanOrEqual

Indicates that the left operand must be greater than or equal to the right operand.

LessThan

Indicates that the left operand must be less than the right operand.

LessThanOrEqual

Indicates that the left operand must be less than or equal to the right operand.

NotBetween

Indicates that the left operand must not be between the right operands.

NotContain

Indicates that the left operand must not contain the right operand.

NotEqual

Indicates that the left operand must not be equal to the right operand.

 See Also