@Environment(value=CLIENT) public enum WorldBorderStage extends Enum<WorldBorderStage>
Enum Constant and Description |
---|
GROWING |
SHRINKING |
STATIONARY |
Modifier and Type | Field and Description |
---|---|
private int |
color |
Modifier and Type | Method and Description |
---|---|
int |
getColor() |
static WorldBorderStage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorldBorderStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorldBorderStage GROWING
public static final WorldBorderStage SHRINKING
public static final WorldBorderStage STATIONARY
public static WorldBorderStage[] values()
for (WorldBorderStage c : WorldBorderStage.values()) System.out.println(c);
public static WorldBorderStage 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 nullpublic int getColor()