public enum HudElement extends java.lang.Enum<HudElement>
| Enum Constant and Description |
|---|
AIR_BUBBLES_BAR |
ARMOR |
CROSSHAIR |
EFFECTS_BAR |
FOOD_BAR |
HEALTH |
HOTBAR |
ITEM_TEXT_POPUP |
PAPER_DOLL |
PROGRESS_BAR |
TOOL_TIPS |
TOUCH_CONTROLS |
VEHICLE_HEALTH |
| Modifier and Type | Method and Description |
|---|---|
static HudElement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HudElement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HudElement PAPER_DOLL
public static final HudElement ARMOR
public static final HudElement TOOL_TIPS
public static final HudElement TOUCH_CONTROLS
public static final HudElement CROSSHAIR
public static final HudElement HOTBAR
public static final HudElement HEALTH
public static final HudElement PROGRESS_BAR
public static final HudElement FOOD_BAR
public static final HudElement AIR_BUBBLES_BAR
public static final HudElement VEHICLE_HEALTH
public static final HudElement EFFECTS_BAR
public static final HudElement ITEM_TEXT_POPUP
public static HudElement[] values()
for (HudElement c : HudElement.values()) System.out.println(c);
public static HudElement 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