Package com.grapecity.documents.excel
Enum Class ValidationOperator
- All Implemented Interfaces:
Serializable,Comparable<ValidationOperator>,Constable
Specifies the operator to use to compare a formula against the value in a cell or, for Between and NotBetween, to compare two formulas.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSpecifies between.Specifies equal.Specifies greater than.Specifies greater than or equal to.Specifies less than.Specifies less than or equal to.Specifies not between.Specifies not equal. -
Method Summary
Modifier and TypeMethodDescriptionstatic ValidationOperatorReturns the enum constant of this class with the specified name.static ValidationOperator[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Between
Specifies between. Can only be used if two formulas are provided. -
NotBetween
Specifies not between. Can only be used if two formulas are provided. -
Equal
Specifies equal. -
NotEqual
Specifies not equal. -
Greater
Specifies greater than. -
Less
Specifies less than. -
GreaterEqual
Specifies greater than or equal to. -
LessEqual
Specifies less than or equal to.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-