public static enum FontFile.ByteEncoding extends java.lang.Enum<FontFile.ByteEncoding>
| Enum Constant and Description |
|---|
MIXED_BYTE |
ONE_BYTE |
TWO_BYTE |
| Modifier and Type | Method and Description |
|---|---|
static FontFile.ByteEncoding |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FontFile.ByteEncoding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FontFile.ByteEncoding ONE_BYTE
public static final FontFile.ByteEncoding TWO_BYTE
public static final FontFile.ByteEncoding MIXED_BYTE
public static FontFile.ByteEncoding[] values()
for (FontFile.ByteEncoding c : FontFile.ByteEncoding.values()) System.out.println(c);
public static FontFile.ByteEncoding 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