public enum ProjectionMode extends java.lang.Enum<ProjectionMode>
Enum Constant and Description |
---|
Angular
Draws the actual 3D crosshair projection on the planes.
|
Crosshair
Draws the full crosshair as the 3D crosshair projection on the planes.
|
None
Crosshair projection does not appear.
|
Modifier and Type | Method and Description |
---|---|
static ProjectionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProjectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProjectionMode None
public static final ProjectionMode Crosshair
public static final ProjectionMode Angular
public static ProjectionMode[] values()
for (ProjectionMode c : ProjectionMode.values()) System.out.println(c);
public static ProjectionMode 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