public enum ContainTextOperator extends Enum<ContainTextOperator>
ContainTextCondition
operator.Enum Constant and Description |
---|
BEGINS_WITH
Cell is formatted if its value begins with
ContainTextCondition.getValue() . |
CONTAINS
Cell is formatted if its value contains
ContainTextCondition.getValue() . |
ENDS_WITH
Cell is formatted if its value ends with
ContainTextCondition.getValue() . |
NOT_CONTAINS
Cell is formatted if its value does not contain
ContainTextCondition.getValue() . |
Modifier and Type | Method and Description |
---|---|
static ContainTextOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContainTextOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainTextOperator BEGINS_WITH
ContainTextCondition.getValue()
.public static final ContainTextOperator CONTAINS
ContainTextCondition.getValue()
.public static final ContainTextOperator ENDS_WITH
ContainTextCondition.getValue()
.public static final ContainTextOperator NOT_CONTAINS
ContainTextCondition.getValue()
.public static ContainTextOperator 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 ContainTextOperator[] values()
for (ContainTextOperator c : ContainTextOperator.values()) System.out.println(c);
© GemBox Ltd. — All rights reserved.