[]
Serializable, Comparable<ValidationOperator>, ConstableBetween and NotBetween, to compare two formulas. Use this enum with IValidation to define how a validation rule evaluates input. Between and NotBetween require both formula arguments, while the other operators use only the first formula.
IRange range = worksheet.getRange("A1");
range.getValidation().add(
ValidationType.Whole, ValidationAlertStyle.Stop, ValidationOperator.Between, 1, 10);
Enum.EnumDesc<E extends Enum<E>>static ValidationOperatorstatic ValidationOperator[]values()name - the name of the enum constant to be returned.IllegalArgumentException - if this enum class has no constant with the specified nameNullPointerException - if the argument is null