public static enum Column.Goal extends java.lang.Enum<Column.Goal>
Modifier and Type | Method and Description |
---|---|
static Column.Goal |
fromString(java.lang.String text)
From string.
|
java.lang.String |
toString() |
static Column.Goal |
valueOf(java.lang.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(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 nullpublic static Column.Goal fromString(java.lang.String text)
text
- the textpublic java.lang.String toString()
toString
in class java.lang.Enum<Column.Goal>