public enum ContainValueOperator extends Enum<ContainValueOperator>
ContainValueCondition
operator.Enum Constant and Description |
---|
BETWEEN
Cell is formatted if its value is between
ContainValueCondition.getValue() and ContainValueCondition.getValue2() . |
EQUAL
Cell is formatted if its value is equal to
ContainValueCondition.getValue() . |
GREATER_THAN
Cell is formatted if its value is greater than
ContainValueCondition.getValue() . |
GREATER_THAN_OR_EQUAL
Cell is formatted if its value is greater than or equal to
ContainValueCondition.getValue() . |
LESS_THAN
Cell is formatted if its value is less than
ContainValueCondition.getValue() . |
LESS_THAN_OR_EQUAL
Cell is formatted if its value is less than or equal to
ContainValueCondition.getValue() . |
NOT_BETWEEN
Cell is formatted if its value is not between
ContainValueCondition.getValue() and ContainValueCondition.getValue2() . |
NOT_EQUAL
Cell is formatted if its value is not equal to
ContainValueCondition.getValue() . |
Modifier and Type | Method and Description |
---|---|
static ContainValueOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContainValueOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainValueOperator BETWEEN
ContainValueCondition.getValue()
and ContainValueCondition.getValue2()
.public static final ContainValueOperator EQUAL
ContainValueCondition.getValue()
.public static final ContainValueOperator GREATER_THAN
ContainValueCondition.getValue()
.public static final ContainValueOperator GREATER_THAN_OR_EQUAL
ContainValueCondition.getValue()
.public static final ContainValueOperator LESS_THAN
ContainValueCondition.getValue()
.public static final ContainValueOperator LESS_THAN_OR_EQUAL
ContainValueCondition.getValue()
.public static final ContainValueOperator NOT_BETWEEN
ContainValueCondition.getValue()
and ContainValueCondition.getValue2()
.public static final ContainValueOperator NOT_EQUAL
ContainValueCondition.getValue()
.public static ContainValueOperator valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static ContainValueOperator[] values()
for (ContainValueOperator c : ContainValueOperator.values()) System.out.println(c);
© GemBox Ltd. — All rights reserved.