public enum GetFilter extends java.lang.Enum<GetFilter> implements EnumParam
| Enum Constant and Description |
|---|
ALL |
ARCHIVED |
DONUT |
OTHERS |
OWNER |
POSTPONED |
SUGGESTS |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
java.lang.String |
toString() |
static GetFilter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GetFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="owner") public static final GetFilter OWNER
@SerializedName(value="others") public static final GetFilter OTHERS
@SerializedName(value="all") public static final GetFilter ALL
@SerializedName(value="postponed") public static final GetFilter POSTPONED
@SerializedName(value="suggests") public static final GetFilter SUGGESTS
@SerializedName(value="archived") public static final GetFilter ARCHIVED
@SerializedName(value="donut") public static final GetFilter DONUT
public static GetFilter[] values()
for (GetFilter c : GetFilter.values()) System.out.println(c);
public static GetFilter 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 java.lang.String toString()
toString in class java.lang.Enum<GetFilter>