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 |
NULL_INPUT
Attempt to build a reference token/JSON Pointer/JSON Reference out of a
null input string
|
NULL_POINTER
Attempt to merge a
JsonPointer with a null pointer |
NULL_URI
Attempt to construct a reference from a null URI
|
| 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 final JsonReferenceMessages NULL_URI
public static final JsonReferenceMessages NULL_INPUT
public static final JsonReferenceMessages NULL_POINTER
JsonPointer with a null pointerpublic 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.