public enum EnumStereoMode extends java.lang.Enum<EnumStereoMode>
Enum Constant | Description |
---|---|
CUSTOM |
|
DOUBLE |
|
NONE |
|
REDBLUE |
|
REDCYAN |
|
REDGREEN |
Modifier and Type | Field | Description |
---|---|---|
static int |
DEFAULT_STEREO_DEGREES |
Modifier and Type | Method | 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
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)