public enum JsonRefMessages extends Enum<JsonRefMessages>
| Enum Constant and Description |
|---|
EMPTY_ESCAPE |
ILLEGAL_ESCAPE |
ILLEGAL_POINTER |
INVALID_URI |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static JsonRefMessages |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonRefMessages[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonRefMessages ILLEGAL_POINTER
public static final JsonRefMessages ILLEGAL_ESCAPE
public static final JsonRefMessages EMPTY_ESCAPE
public static final JsonRefMessages INVALID_URI
public static JsonRefMessages[] values()
for (JsonRefMessages c : JsonRefMessages.values()) System.out.println(c);
public static JsonRefMessages 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 String toString()
toString in class Enum<JsonRefMessages>Copyright © 2013. All Rights Reserved.