public enum FormatConditionType extends java.lang.Enum<FormatConditionType>
| Enum Constant and Description |
|---|
AboveAverageCondition
Specifies the above average condition.
|
BlanksCondition
Specifies the blanks condition.
|
CellValue
Specifies that the conditional format is based on a cell value.
|
ColorScale
Specifies the color scale.
|
Databar
Specifies the databar.
|
ErrorsCondition
Specifies the errors condition.
|
Expression
Specifies that the conditional format is based on an expression.
|
IconSets
Specifies icon sets.
|
NoBlanksCondition
Specifies the no blanks condition.
|
NoErrorsCondition
Specfies the no errors condition.
|
TextString
Specifies a text string.
|
TimePeriod
Specifies the time period.
|
Top10
Specifies the top 10 values.
|
UniqueValues
Specifies unique values.
|
| Modifier and Type | Method and Description |
|---|---|
static FormatConditionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FormatConditionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormatConditionType CellValue
public static final FormatConditionType Expression
public static final FormatConditionType ColorScale
public static final FormatConditionType Databar
public static final FormatConditionType Top10
public static final FormatConditionType IconSets
public static final FormatConditionType UniqueValues
public static final FormatConditionType TextString
public static final FormatConditionType BlanksCondition
public static final FormatConditionType TimePeriod
public static final FormatConditionType AboveAverageCondition
public static final FormatConditionType NoBlanksCondition
public static final FormatConditionType ErrorsCondition
public static final FormatConditionType NoErrorsCondition
public static FormatConditionType[] values()
for (FormatConditionType c : FormatConditionType.values()) System.out.println(c);
public static FormatConditionType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null