public enum AudioChannelType extends java.lang.Enum<AudioChannelType>
EsxPackage.getAudioChannelType()
Enum Constant and Description |
---|
MONO
The 'MONO' literal object.
|
STEREO_1
The 'STEREO 1' literal object.
|
STEREO_2
The 'STEREO 2' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
MONO_VALUE
The 'MONO' literal value.
|
static int |
STEREO_1_VALUE
The 'STEREO 1' literal value.
|
static int |
STEREO_2_VALUE
The 'STEREO 2' literal value.
|
static java.util.List<AudioChannelType> |
VALUES
A public read-only list of all the 'Audio Channel Type' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static AudioChannelType |
get(int value)
Returns the 'Audio Channel Type' literal with the specified integer value.
|
static AudioChannelType |
get(java.lang.String literal)
Returns the 'Audio Channel Type' literal with the specified literal value.
|
static AudioChannelType |
getByName(java.lang.String name)
Returns the 'Audio Channel Type' 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 AudioChannelType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AudioChannelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AudioChannelType MONO
MONO_VALUE
public static final AudioChannelType STEREO_1
STEREO_1_VALUE
public static final AudioChannelType STEREO_2
STEREO_2_VALUE
public static final int MONO_VALUE
If the meaning of 'MONO' literal object isn't clear, there really should be more of a description here...
MONO
,
Constant Field Valuespublic static final int STEREO_1_VALUE
If the meaning of 'STEREO 1' literal object isn't clear, there really should be more of a description here...
STEREO_1
,
Constant Field Valuespublic static final int STEREO_2_VALUE
If the meaning of 'STEREO 2' literal object isn't clear, there really should be more of a description here...
STEREO_2
,
Constant Field Valuespublic static final java.util.List<AudioChannelType> VALUES
public static AudioChannelType[] values()
for (AudioChannelType c : AudioChannelType.values()) System.out.println(c);
public static AudioChannelType 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 AudioChannelType get(java.lang.String literal)
public static AudioChannelType getByName(java.lang.String name)
public static AudioChannelType 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<AudioChannelType>