public enum ContainConditionType extends Enum<ContainConditionType>
ContainCondition
type.Enum Constant and Description |
---|
BLANKS
Formats only cells with blank values.
|
DATE
Formats only cells with date that satisfies the specified criteria.
|
ERRORS
Formats only cells with errors.
|
NO_BLANKS
Formats only cells without blank values.
|
NO_ERRORS
Formats only cells without errors.
|
TEXT
Formats only cells with text that satisfies the specified criteria.
|
VALUE
Formats only cells with value that satisfies the specified criteria.
|
Modifier and Type | Method and Description |
---|---|
static ContainConditionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContainConditionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainConditionType BLANKS
public static final ContainConditionType DATE
public static final ContainConditionType ERRORS
public static final ContainConditionType NO_BLANKS
public static final ContainConditionType NO_ERRORS
public static final ContainConditionType TEXT
public static final ContainConditionType VALUE
public static ContainConditionType 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 ContainConditionType[] values()
for (ContainConditionType c : ContainConditionType.values()) System.out.println(c);
© GemBox d.o.o. — All rights reserved.