public static enum Node.ProjectionMode extends java.lang.Enum<Node.ProjectionMode>
Enum Constant and Description |
---|
PROJECTION_NORMAL |
PROJECTION_SCREEN |
PROJECTION_VIEWPLANE |
Modifier and Type | Method and Description |
---|---|
static Node.ProjectionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Node.ProjectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Node.ProjectionMode PROJECTION_NORMAL
public static final Node.ProjectionMode PROJECTION_VIEWPLANE
public static final Node.ProjectionMode PROJECTION_SCREEN
public static Node.ProjectionMode[] values()
for (Node.ProjectionMode c : Node.ProjectionMode.values()) System.out.println(c);
public static Node.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