@Deprecated public static enum World.Border extends java.lang.Enum<World.Border>
| Enum Constant and Description |
|---|
LAVA
Deprecated.
|
VOID
Deprecated.
|
WATER
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static World.Border |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static World.Border[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final World.Border VOID
public static final World.Border WATER
public static final World.Border LAVA
public static World.Border[] values()
for (World.Border c : World.Border.values()) System.out.println(c);
public static World.Border 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 null