public static enum AbsoluteStereoAction.Type extends java.lang.Enum<AbsoluteStereoAction.Type>
Enum Constant and Description |
---|
ADD
Add absolute stereo
|
CLEAR
Remove absolute stereo
|
Modifier and Type | Method and Description |
---|---|
static AbsoluteStereoAction.Type |
parse(java.lang.String type)
Parses the type of the absolute stereo action
|
java.lang.String |
toString() |
static AbsoluteStereoAction.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbsoluteStereoAction.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbsoluteStereoAction.Type ADD
public static final AbsoluteStereoAction.Type CLEAR
public static AbsoluteStereoAction.Type[] values()
for (AbsoluteStereoAction.Type c : AbsoluteStereoAction.Type.values()) System.out.println(c);
public static AbsoluteStereoAction.Type 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 toString()
toString
in class java.lang.Enum<AbsoluteStereoAction.Type>
public static AbsoluteStereoAction.Type parse(java.lang.String type)
type
- the string representation of the type to be parsed