Package com.grapecity.documents.excel
Enum Class FormatConditionType
- All Implemented Interfaces:
Serializable,Comparable<FormatConditionType>,Constable
Specifies whether the conditional format is based on a cell value or an expression.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSpecifies the above average condition.Specifies the blanks condition.Specifies that the conditional format is based on a cell value.Specifies the color scale.Specifies the databar.Specifies the errors condition.Specifies that the conditional format is based on an expression.Specifies icon sets.Specifies the no blanks condition.Specfies the no errors condition.Specifies a text string.Specifies the time period.Specifies the top 10 values.Specifies unique values. -
Method Summary
Modifier and TypeMethodDescriptionstatic FormatConditionTypeReturns the enum constant of this class with the specified name.static FormatConditionType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CellValue
Specifies that the conditional format is based on a cell value. -
Expression
Specifies that the conditional format is based on an expression. -
ColorScale
Specifies the color scale. -
Databar
Specifies the databar. -
Top10
Specifies the top 10 values. -
IconSets
Specifies icon sets. -
UniqueValues
Specifies unique values. -
TextString
Specifies a text string. -
BlanksCondition
Specifies the blanks condition. -
TimePeriod
Specifies the time period. -
AboveAverageCondition
Specifies the above average condition. -
NoBlanksCondition
Specifies the no blanks condition. -
ErrorsCondition
Specifies the errors condition. -
NoErrorsCondition
Specfies the no errors condition.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-