Serializable, Comparable<World.Environment>public static enum World.Environment extends Enum<World.Environment>
| Enum Constant | Description | 
|---|---|
NETHER | 
 Represents a nether based map ("hell") 
 | 
NORMAL | 
 Represents the "normal"/"surface world" map 
 | 
THE_END | 
 Represents the "end" map 
 | 
| Modifier and Type | Method | 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 @Nullable public static World.Environment getEnvironment(int id)
id - The ID of the environmentCopyright © 2019. All rights reserved.