public enum STColorMode extends Enum<STColorMode>
Java class for ST_ColorMode.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_ColorMode">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="auto"/>
<enumeration value="custom"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AUTO
Use Shape Fill Color
|
CUSTOM
Use Custom Color
|
| Modifier and Type | Method and Description |
|---|---|
static STColorMode |
fromValue(String v) |
String |
value() |
static STColorMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STColorMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STColorMode AUTO
public static final STColorMode CUSTOM
public static STColorMode[] values()
for (STColorMode c : STColorMode.values()) System.out.println(c);
public static STColorMode 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 STColorMode fromValue(String v)
Copyright © 2007-2022. All Rights Reserved.