public static enum World.Environment extends Enum<World.Environment>
| Enum Constant and Description | 
|---|
| NETHERRepresents a nether based map ("hell") | 
| NORMALRepresents the "normal"/"surface world" map | 
| THE_ENDRepresents the "end" map | 
| Modifier and Type | Method and Description | 
|---|---|
| static World.Environment | getEnvironment(int id)Deprecated. 
 Magic value | 
| int | getId()Deprecated. 
 Magic value | 
| static World.Environment | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static World.Environment[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final World.Environment NORMAL
public static final World.Environment NETHER
public static final World.Environment THE_END
public static World.Environment[] values()
for (World.Environment c : World.Environment.values()) System.out.println(c);
public static World.Environment 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@Deprecated public int getId()
@Deprecated public static World.Environment getEnvironment(int id)
id - The ID of the environmentCopyright © 2015. All rights reserved.