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