public enum STFillMethod extends Enum<STFillMethod>
Java class for ST_FillMethod.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_FillMethod"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="none"/> <enumeration value="linear"/> <enumeration value="sigma"/> <enumeration value="any"/> <enumeration value="linear sigma"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ANY
Application Default Fill
|
LINEAR
Linear Fill
|
LINEAR_SIGMA
Linear Sigma Fill
|
NONE
No Gradient Fill
|
SIGMA
Sigma Fill
|
Modifier and Type | Method and Description |
---|---|
static STFillMethod |
fromValue(String v) |
String |
value() |
static STFillMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STFillMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STFillMethod NONE
public static final STFillMethod LINEAR
public static final STFillMethod SIGMA
public static final STFillMethod ANY
public static final STFillMethod LINEAR_SIGMA
public static STFillMethod[] values()
for (STFillMethod c : STFillMethod.values()) System.out.println(c);
public static STFillMethod valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String value()
public static STFillMethod fromValue(String v)
Copyright © 2007-2019. All Rights Reserved.