public static enum ArrowButton.Direction extends java.lang.Enum<ArrowButton.Direction>
Modifier and Type | Field and Description |
---|---|
net.minecraft.util.ResourceLocation |
background |
int |
height |
int |
offsetX |
int |
offsetY |
net.minecraft.util.ResourceLocation |
overlay |
int |
width |
Modifier and Type | Method and Description |
---|---|
static ArrowButton.Direction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ArrowButton.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArrowButton.Direction LEFT
public static final ArrowButton.Direction RIGHT
public final net.minecraft.util.ResourceLocation overlay
public final net.minecraft.util.ResourceLocation background
public final int width
public final int height
public final int offsetX
public final int offsetY
public static ArrowButton.Direction[] values()
for (ArrowButton.Direction c : ArrowButton.Direction.values()) System.out.println(c);
public static ArrowButton.Direction 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