public enum STHint extends Enum<STHint>
Java class for ST_Hint.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_Hint">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="default"/>
<enumeration value="eastAsia"/>
<enumeration value="cs"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CS
Complex Script Font
|
DEFAULT
High ANSI Font
|
EAST_ASIA
East Asian Font
|
| Modifier and Type | Method and Description |
|---|---|
static STHint |
fromValue(String v) |
String |
value() |
static STHint |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STHint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STHint DEFAULT
public static final STHint EAST_ASIA
public static final STHint CS
public static STHint[] values()
for (STHint c : STHint.values()) System.out.println(c);
public static STHint 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-2020. All Rights Reserved.