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