public enum CrosshairMode extends java.lang.Enum<CrosshairMode>
TooltipModifier3D
Enum Constant and Description |
---|
Lines
Crosshair appears at the cursor point, consisting of the three lines which protrude from the corresponding walls of the viewport box.
|
None
Crosshair does not appear.
|
Planes
Crosshair appears at the cursor point, consisting of two intersecting planes.
|
Modifier and Type | Method and Description |
---|---|
static CrosshairMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CrosshairMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CrosshairMode None
public static final CrosshairMode Lines
public static final CrosshairMode Planes
public static CrosshairMode[] values()
for (CrosshairMode c : CrosshairMode.values()) System.out.println(c);
public static CrosshairMode 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