public static enum Ranker.Status extends java.lang.Enum<Ranker.Status>
Enum Constant and Description |
---|
AVAILABLE
available.
|
FAILED
failed.
|
NON_EXISTENT
non existent.
|
TRAINING
training.
|
UNAVAILABLE
unavailable.
|
Modifier and Type | Method and Description |
---|---|
static Ranker.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Ranker.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="Available") public static final Ranker.Status AVAILABLE
@SerializedName(value="Failed") public static final Ranker.Status FAILED
@SerializedName(value="Non Existent") public static final Ranker.Status NON_EXISTENT
@SerializedName(value="Training") public static final Ranker.Status TRAINING
@SerializedName(value="Unavailable") public static final Ranker.Status UNAVAILABLE
public static Ranker.Status[] values()
for (Ranker.Status c : Ranker.Status.values()) System.out.println(c);
public static Ranker.Status 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