public enum STTheme extends Enum<STTheme>
Java class for ST_Theme.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_Theme">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="majorEastAsia"/>
<enumeration value="majorBidi"/>
<enumeration value="majorAscii"/>
<enumeration value="majorHAnsi"/>
<enumeration value="minorEastAsia"/>
<enumeration value="minorBidi"/>
<enumeration value="minorAscii"/>
<enumeration value="minorHAnsi"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
MAJOR_ASCII
Major ASCII Theme Font
|
MAJOR_BIDI
Major Complex Script Theme
Font
|
MAJOR_EAST_ASIA
Major East Asian Theme
Font
|
MAJOR_H_ANSI
Major High ANSI Theme
Font
|
MINOR_ASCII
Minor ASCII Theme Font
|
MINOR_BIDI
Minor Complex Script Theme
Font
|
MINOR_EAST_ASIA
Minor East Asian Theme
Font
|
MINOR_H_ANSI
Minor High ANSI Theme
Font
|
| Modifier and Type | Method and Description |
|---|---|
static STTheme |
fromValue(String v) |
String |
value() |
static STTheme |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STTheme[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STTheme MAJOR_EAST_ASIA
public static final STTheme MAJOR_BIDI
public static final STTheme MAJOR_ASCII
public static final STTheme MAJOR_H_ANSI
public static final STTheme MINOR_EAST_ASIA
public static final STTheme MINOR_BIDI
public static final STTheme MINOR_ASCII
public static final STTheme MINOR_H_ANSI
public static STTheme[] values()
for (STTheme c : STTheme.values()) System.out.println(c);
public static STTheme 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()
Copyright © 2007-2022. All Rights Reserved.