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