public enum JsonApiLinkType extends Enum<JsonApiLinkType>
| Enum Constant and Description |
|---|
FIRST |
LAST |
NEXT |
PREVIOUS |
RELATED |
SELF |
| Modifier and Type | Method and Description |
|---|---|
static JsonApiLinkType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonApiLinkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonApiLinkType FIRST
public static final JsonApiLinkType PREVIOUS
public static final JsonApiLinkType SELF
public static final JsonApiLinkType NEXT
public static final JsonApiLinkType LAST
public static final JsonApiLinkType RELATED
public static JsonApiLinkType[] values()
for (JsonApiLinkType c : JsonApiLinkType.values()) System.out.println(c);
public static JsonApiLinkType 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 nullCopyright © 2022. All rights reserved.