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