Package org.apache.poi.sl.draw.binding
Enum Class STPathFillMode
- All Implemented Interfaces:
Serializable
,Comparable<STPathFillMode>
,Constable
Java class for ST_PathFillMode.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_PathFillMode"> <restriction base="{http://www.w3.org/2001/XMLSchema}token"> <enumeration value="none"/> <enumeration value="norm"/> <enumeration value="lighten"/> <enumeration value="lightenLess"/> <enumeration value="darken"/> <enumeration value="darkenLess"/> </restriction> </simpleType>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDarken Path FillDarken Path Fill LessLighten Path FillLighten Path Fill LessNo Path FillNormal Path Fill -
Method Summary
Modifier and TypeMethodDescriptionstatic STPathFillMode
value()
static STPathFillMode
Returns the enum constant of this class with the specified name.static STPathFillMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
No Path Fill -
NORM
Normal Path Fill -
LIGHTEN
Lighten Path Fill -
LIGHTEN_LESS
Lighten Path Fill Less -
DARKEN
Darken Path Fill -
DARKEN_LESS
Darken Path Fill Less
-
-
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
-
value
-
fromValue
-