public enum ModDest extends java.lang.Enum<ModDest>
EsxPackage.getModDest()
Enum Constant and Description |
---|
AMP
The 'Amp' literal object.
|
CUTOFF
The 'Cutoff' literal object.
|
PAN
The 'Pan' literal object.
|
PITCH
The 'Pitch' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
AMP_VALUE
The 'Amp' literal value.
|
static int |
CUTOFF_VALUE
The 'Cutoff' literal value.
|
static int |
PAN_VALUE
The 'Pan' literal value.
|
static int |
PITCH_VALUE
The 'Pitch' literal value.
|
static java.util.List<ModDest> |
VALUES
A public read-only list of all the 'Mod Dest' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static ModDest |
get(int value)
Returns the 'Mod Dest' literal with the specified integer value.
|
static ModDest |
get(java.lang.String literal)
Returns the 'Mod Dest' literal with the specified literal value.
|
static ModDest |
getByName(java.lang.String name)
Returns the 'Mod Dest' literal with the specified name.
|
java.lang.String |
getLiteral() |
java.lang.String |
getName() |
int |
getValue() |
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static ModDest |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModDest[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModDest PITCH
PITCH_VALUE
public static final ModDest CUTOFF
CUTOFF_VALUE
public static final int PITCH_VALUE
If the meaning of 'Pitch' literal object isn't clear, there really should be more of a description here...
PITCH
,
Constant Field Valuespublic static final int CUTOFF_VALUE
If the meaning of 'Cutoff' literal object isn't clear, there really should be more of a description here...
CUTOFF
,
Constant Field Valuespublic static final int AMP_VALUE
If the meaning of 'Amp' literal object isn't clear, there really should be more of a description here...
AMP
,
Constant Field Valuespublic static final int PAN_VALUE
If the meaning of 'Pan' literal object isn't clear, there really should be more of a description here...
PAN
,
Constant Field Valuespublic static final java.util.List<ModDest> VALUES
public static ModDest[] values()
for (ModDest c : ModDest.values()) System.out.println(c);
public static ModDest 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 static ModDest get(java.lang.String literal)
public static ModDest getByName(java.lang.String name)
public static ModDest get(int value)
public int getValue()
public java.lang.String getName()
public java.lang.String getLiteral()
public java.lang.String toString()
toString
in class java.lang.Enum<ModDest>