static enum JsonParser.EscapeChar extends java.lang.Enum<JsonParser.EscapeChar>
| Enum Constant and Description |
|---|
BACKSPACE
\\b represents the backspace character (U+0008)
|
CR
\\r represents the carriage return character (U+000D)
|
FF
\\f represents the form feed character (U+000C)
|
LF
\\n represents the line feed character (U+000A)
|
QUOTE
\\" represents the quotation mark character (U+0022)
|
RSOLIDUS
\\\\ represents the reverse solidus character (U+005C)
|
SOLIDUS
\\/ represents the solidus character (U+002F)
|
TAB
\\t represents the character tabulation character (U+0009)
|
| Modifier and Type | Field and Description |
|---|---|
char |
CHAR |
java.lang.String |
ESCAPED |
boolean |
NEEDS_ESCAPING |
| Modifier and Type | Method and Description |
|---|---|
static JsonParser.EscapeChar |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JsonParser.EscapeChar[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonParser.EscapeChar QUOTE
public static final JsonParser.EscapeChar RSOLIDUS
public static final JsonParser.EscapeChar SOLIDUS
public static final JsonParser.EscapeChar BACKSPACE
public static final JsonParser.EscapeChar FF
public static final JsonParser.EscapeChar LF
public static final JsonParser.EscapeChar CR
public static final JsonParser.EscapeChar TAB
public final char CHAR
public final java.lang.String ESCAPED
public final boolean NEEDS_ESCAPING
public static JsonParser.EscapeChar[] values()
for (JsonParser.EscapeChar c : JsonParser.EscapeChar.values()) System.out.println(c);
public static JsonParser.EscapeChar 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