public static enum FarmHelper.Stage extends java.lang.Enum<FarmHelper.Stage>
| Modifier and Type | Method and Description |
|---|---|
FarmHelper.Stage |
next() |
static FarmHelper.Stage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FarmHelper.Stage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FarmHelper.Stage CULTIVATE
public static final FarmHelper.Stage HARVEST
public static FarmHelper.Stage[] values()
for (FarmHelper.Stage c : FarmHelper.Stage.values()) System.out.println(c);
public static FarmHelper.Stage 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 FarmHelper.Stage next()