public enum EnumStereoMode extends java.lang.Enum<EnumStereoMode>
Enum Constant and Description |
---|
CUSTOM |
DOUBLE |
NONE |
REDBLUE |
REDCYAN |
REDGREEN |
Modifier and Type | Field and Description |
---|---|
static int |
DEFAULT_STEREO_DEGREES |
private boolean |
isBiColor |
private java.lang.String |
name |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getName() |
static EnumStereoMode |
getStereoMode(java.lang.String id) |
boolean |
isBiColor() |
static EnumStereoMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumStereoMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumStereoMode NONE
public static final EnumStereoMode DOUBLE
public static final EnumStereoMode REDCYAN
public static final EnumStereoMode REDBLUE
public static final EnumStereoMode REDGREEN
public static final EnumStereoMode CUSTOM
private java.lang.String name
private boolean isBiColor
public static final int DEFAULT_STEREO_DEGREES
public static EnumStereoMode[] values()
for (EnumStereoMode c : EnumStereoMode.values()) System.out.println(c);
public static EnumStereoMode 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 java.lang.String getName()
public boolean isBiColor()
public static EnumStereoMode getStereoMode(java.lang.String id)