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