public static enum Column.Goal extends Enum<Column.Goal>
| Modifier and Type | Method and Description | 
|---|---|
static Column.Goal | 
fromString(String text)
From string. 
 | 
String | 
toString()  | 
static Column.Goal | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static Column.Goal[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Column.Goal MAX
public static final Column.Goal MIN
public static Column.Goal[] values()
for (Column.Goal c : Column.Goal.values()) System.out.println(c);
public static Column.Goal 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 nullpublic static Column.Goal fromString(String text)
text - the textpublic String toString()
toString in class Enum<Column.Goal>Copyright © 2015–2016 IBM Watson. All rights reserved.