public enum GlyphState extends Enum<GlyphState>
Specifies the glyph state.
Enum Constant and Description |
---|
ParsedWithErrors
Glyph was parsed with errors.
|
Success
Glyph was parsed successfully.
|
Modifier and Type | Method and Description |
---|---|
static GlyphState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GlyphState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GlyphState Success
Glyph was parsed successfully.
public static final GlyphState ParsedWithErrors
Glyph was parsed with errors.
public static GlyphState[] values()
for (GlyphState c : GlyphState.values()) System.out.println(c);
public static GlyphState 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 null