| Enum Constant and Description | 
|---|
AUTUMN_OAK_FOREST
Autumn Oak Forest 
 | 
HADES_FOREST
Hades Forest 
 | 
MARSH_FOREST
Marsh Forest 
 | 
MIXED_OAK_FOREST
Mixed Oak Forest 
 | 
MIXED_PALM_FOREST
Mixed Palm Forest 
 | 
MIXED_PINE_FOREST
Mixed Pine Forest 
 | 
OAK_FOREST
Oak Forest 
 | 
PALM_FOREST
Palm Forest 
 | 
PINE_FOREST
Pine Forest 
 | 
SAVANNAH_FOREST
Savannah Forest 
 | 
SNOW_PINE_FOREST
Snow Pine Forest 
 | 
TUNDRA_FOREST
Tundra Forest 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static Forest | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static Forest[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Forest OAK_FOREST
public static final Forest PALM_FOREST
public static final Forest PINE_FOREST
public static final Forest SNOW_PINE_FOREST
public static final Forest AUTUMN_OAK_FOREST
public static final Forest MIXED_OAK_FOREST
public static final Forest HADES_FOREST
public static final Forest MIXED_PINE_FOREST
public static final Forest MIXED_PALM_FOREST
public static final Forest SAVANNAH_FOREST
public static final Forest MARSH_FOREST
public static final Forest TUNDRA_FOREST
public static Forest[] values()
for (Forest c : Forest.values()) System.out.println(c);
public static Forest 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 null