public enum ResponseNote extends java.lang.Enum<ResponseNote>
| Enum Constant and Description |
|---|
ATOM_FEED |
INCLUDES_STATES |
ORDER_BY_LIMIT_FEED |
SEQUENCE_FEED |
UNIONED_FEED |
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
static ResponseNote |
fromValue(int value) |
boolean |
isFeed() |
static @Nullable ResponseNote |
maybeFromValue(int value) |
static ResponseNote |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ResponseNote[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResponseNote SEQUENCE_FEED
public static final ResponseNote ATOM_FEED
public static final ResponseNote ORDER_BY_LIMIT_FEED
public static final ResponseNote UNIONED_FEED
public static final ResponseNote INCLUDES_STATES
public static ResponseNote[] values()
for (ResponseNote c : ResponseNote.values()) System.out.println(c);
public static ResponseNote 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 nullpublic static ResponseNote fromValue(int value)
@Nullable public static @Nullable ResponseNote maybeFromValue(int value)
public boolean isFeed()