public enum FetchStatus extends java.lang.Enum<FetchStatus>
| Modifier and Type | Method and Description |
|---|---|
static FetchStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FetchStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="fetched") public static final FetchStatus FETCHED
@SerializedName(value="fetching") public static final FetchStatus FETCHING
@SerializedName(value="added") public static final FetchStatus ADDED
@SerializedName(value="not_found") public static final FetchStatus NOT_FOUND
public static FetchStatus[] values()
for (FetchStatus c : FetchStatus.values()) System.out.println(c);
public static FetchStatus 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