public enum JsonReferenceMessages extends Enum<JsonReferenceMessages>
Enum Constant and Description |
---|
EMPTY_ESCAPE
Empty escape sequence in a reference token
|
ILLEGAL_ESCAPE
Bad escape sequence in a reference token
|
INVALID_URI
String is not a valid URI
|
NOT_SLASH
Malformed JSON Pointer:
/ not found when expected |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static JsonReferenceMessages |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonReferenceMessages[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonReferenceMessages INVALID_URI
public static final JsonReferenceMessages ILLEGAL_ESCAPE
public static final JsonReferenceMessages EMPTY_ESCAPE
public static final JsonReferenceMessages NOT_SLASH
/
not found when expectedpublic static JsonReferenceMessages[] values()
for (JsonReferenceMessages c : JsonReferenceMessages.values()) System.out.println(c);
public static JsonReferenceMessages 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<JsonReferenceMessages>
Copyright © 2013. All Rights Reserved.