Package org.apache.poi.ddf
Enum Class EscherColorRef.SysIndexSource
- All Implemented Interfaces:
Serializable
,Comparable<EscherColorRef.SysIndexSource>
,Constable
- Enclosing class:
- EscherColorRef
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionUse the current, or last-used, color.Use the fill background color of the shape.Use the fill color of the shape.If the shape contains a fill, use the fill color of the shape.Use the line background color of the shape.Use the line color of the shape.If the shape contains a line, use the line color of the shape.Use the shadow color of the shape. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static EscherColorRef.SysIndexSource[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FILL_COLOR
Use the fill color of the shape. -
LINE_OR_FILL_COLOR
If the shape contains a line, use the line color of the shape. Otherwise, use the fill color. -
LINE_COLOR
Use the line color of the shape. -
SHADOW_COLOR
Use the shadow color of the shape. -
CURRENT_OR_LAST_COLOR
Use the current, or last-used, color. -
FILL_BACKGROUND_COLOR
Use the fill background color of the shape. -
LINE_BACKGROUND_COLOR
Use the line background color of the shape. -
FILL_OR_LINE_COLOR
If the shape contains a fill, use the fill color of the shape. Otherwise, use the line color.
-
-
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
-