public enum Symbol extends Enum<Symbol>
| Enum Constant and Description |
|---|
ENTRY_SEPARATOR |
GENERIC_END |
GENERIC_START |
JAVA_COMMENT |
LIST_END |
LIST_SEPARATOR |
LIST_START |
LITERAL_ESCAPE |
LITERAL_QUOTE |
MAP_END |
MAP_ENTRY_VALUE_SEP |
MAP_KEY_ENTRY_SEP |
MAP_START |
PARAMS_BEGIN |
PARAMS_END |
SHELL_COMMENT |
| Modifier and Type | Field and Description |
|---|---|
int |
c |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Symbol |
valueOf(int b) |
static Symbol |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Symbol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Symbol LITERAL_QUOTE
public static final Symbol LITERAL_ESCAPE
public static final Symbol LIST_START
public static final Symbol LIST_END
public static final Symbol LIST_SEPARATOR
public static final Symbol MAP_START
public static final Symbol MAP_END
public static final Symbol MAP_KEY_ENTRY_SEP
public static final Symbol MAP_ENTRY_VALUE_SEP
public static final Symbol GENERIC_START
public static final Symbol GENERIC_END
public static final Symbol ENTRY_SEPARATOR
public static final Symbol SHELL_COMMENT
public static final Symbol JAVA_COMMENT
public static final Symbol PARAMS_BEGIN
public static final Symbol PARAMS_END
public static Symbol[] values()
for (Symbol c : Symbol.values()) System.out.println(c);
public static Symbol 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 nullpublic static Symbol valueOf(int b)
Copyright © 2016. All rights reserved.