public enum JsonApiCall extends java.lang.Enum<JsonApiCall>
| Enum Constant and Description |
|---|
COLLECTION_GET |
FIELD_GET |
FIELD_POST |
RELATIONSHIP_DELETE |
RELATIONSHIP_GET |
RELATIONSHIP_PATCH |
RELATIONSHIP_POST |
RESOURCE_DELETE |
RESOURCE_GET |
RESOURCE_PATCH |
RESOURCE_POST |
| Modifier and Type | Method and Description |
|---|---|
static JsonApiCall |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JsonApiCall[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonApiCall COLLECTION_GET
public static final JsonApiCall RESOURCE_GET
public static final JsonApiCall RELATIONSHIP_GET
public static final JsonApiCall FIELD_GET
public static final JsonApiCall RESOURCE_POST
public static final JsonApiCall FIELD_POST
public static final JsonApiCall RELATIONSHIP_POST
public static final JsonApiCall RESOURCE_PATCH
public static final JsonApiCall RELATIONSHIP_PATCH
public static final JsonApiCall RESOURCE_DELETE
public static final JsonApiCall RELATIONSHIP_DELETE
public static JsonApiCall[] values()
for (JsonApiCall c : JsonApiCall.values()) System.out.println(c);
public static JsonApiCall 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