| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<World.Environment>
org.bukkit.World.Environment
public static enum World.Environment
Represents various map environment types that a world may be
| Enum Constant Summary | |
|---|---|
| NETHERRepresents a nether based map ("hell") | |
| NORMALRepresents the "normal"/"surface world" map | |
| THE_ENDRepresents the "end" map | |
| Method Summary | |
|---|---|
| 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. | 
| Methods inherited from class java.lang.Enum | 
|---|
| clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf | 
| Methods inherited from class java.lang.Object | 
|---|
| getClass, notify, notifyAll, wait, wait, wait | 
| Enum Constant Detail | 
|---|
public static final World.Environment NORMAL
public static final World.Environment NETHER
public static final World.Environment THE_END
| Method Detail | 
|---|
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 name
NullPointerException - if the argument is null@Deprecated public int getId()
@Deprecated public static World.Environment getEnvironment(int id)
id - The ID of the environment
| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||