|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<STPathFillMode> org.apache.poi.sl.draw.binding.STPathFillMode
public enum STPathFillMode
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>
Enum Constant Summary | |
---|---|
DARKEN
Darken Path Fill |
|
DARKEN_LESS
Darken Path Fill Less |
|
LIGHTEN
Lighten Path Fill |
|
LIGHTEN_LESS
Lighten Path Fill Less |
|
NONE
No Path Fill |
|
NORM
Normal Path Fill |
Method Summary | |
---|---|
static STPathFillMode |
fromValue(java.lang.String v)
|
java.lang.String |
value()
|
static STPathFillMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static STPathFillMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final STPathFillMode NONE
public static final STPathFillMode NORM
public static final STPathFillMode LIGHTEN
public static final STPathFillMode LIGHTEN_LESS
public static final STPathFillMode DARKEN
public static final STPathFillMode DARKEN_LESS
Method Detail |
---|
public static STPathFillMode[] values()
for (STPathFillMode c : STPathFillMode.values()) System.out.println(c);
public static STPathFillMode 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 name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String value()
public static STPathFillMode fromValue(java.lang.String v)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |