Enum Constant and Description |
---|
Chest
Chest crosshair (chest icon)
|
Context
Crosshair for context menu (circle with three dots)
|
Crafting
Crafting crosshair (small hammer icon)
|
Default
The default crosshair
|
Door
Door crosshair (door icon)
|
Fire
Fire crosshair (small fire icon)
|
Latch
Latch icon
|
Mount
Add/mount crosshair (circle with + in it)
|
Music
Music icon
|
NoFire
Crossed out fire crosshair
|
Pickup
Pickup crosshair (small hand icon)
|
Recycle
Recycle icon
|
Scissors
Scissors icon
|
Sitdown
Sitting crosshair (chair icon)
|
Sleep
Sleeping crosshair (Zzz)
|
Toilet
Toilet icon
|
Trash
Trashbin icon
|
Wheel
Wheel crosshair
|
Write
Write crosshair (pen icon)
|
Modifier and Type | Method and Description |
---|---|
static Crosshair |
getCrosshair(byte id)
Gets the
crosshair which has the provided id. |
byte |
getID()
Used internally.
|
static Crosshair |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Crosshair[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Crosshair Default
public static final Crosshair Pickup
public static final Crosshair Crafting
public static final Crosshair Context
public static final Crosshair Sitdown
public static final Crosshair Door
public static final Crosshair Scissors
public static final Crosshair Sleep
public static final Crosshair Music
public static final Crosshair Mount
public static final Crosshair Trash
public static final Crosshair Recycle
public static final Crosshair Chest
public static final Crosshair Toilet
public static final Crosshair Latch
public static final Crosshair Write
public static final Crosshair Fire
public static final Crosshair NoFire
public static final Crosshair Wheel
public static Crosshair[] values()
for (Crosshair c : Crosshair.values()) System.out.println(c);
public static Crosshair 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 nullpublic byte getID()
public static Crosshair getCrosshair(byte id)
crosshair
which has the provided id.id
- the id.Crosshair
.