public static enum Ranker.Status extends 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(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. 
 | 
public static final Ranker.Status AVAILABLE
public static final Ranker.Status FAILED
public static final Ranker.Status NON_EXISTENT
public static final Ranker.Status TRAINING
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(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 © 2015–2016 IBM Watson. All rights reserved.