public enum FontLanguageIndex extends java.lang.Enum<FontLanguageIndex>
| Enum Constant and Description |
|---|
ComplexScript
Specifies the complex script.
|
EastAsian
Specifies the EastAsian language.
|
Latin
Specifies the Latin language.
|
| Modifier and Type | Method and Description |
|---|---|
static FontLanguageIndex |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FontLanguageIndex[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FontLanguageIndex Latin
public static final FontLanguageIndex EastAsian
public static final FontLanguageIndex ComplexScript
public static FontLanguageIndex[] values()
for (FontLanguageIndex c : FontLanguageIndex.values()) System.out.println(c);
public static FontLanguageIndex 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 namejava.lang.NullPointerException - if the argument is null