public static enum IPlayer.OutputAudioChannel extends java.lang.Enum<IPlayer.OutputAudioChannel>
Enum Constant and Description |
---|
OUTPUT_AUDIO_CHANNEL_LEFT
Left audio channel
|
OUTPUT_AUDIO_CHANNEL_NONE
Not specified, default value
|
OUTPUT_AUDIO_CHANNEL_RIGHT
Right audio channel
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Query the value of the specified parameter.
|
static IPlayer.OutputAudioChannel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IPlayer.OutputAudioChannel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IPlayer.OutputAudioChannel OUTPUT_AUDIO_CHANNEL_NONE
public static final IPlayer.OutputAudioChannel OUTPUT_AUDIO_CHANNEL_LEFT
public static final IPlayer.OutputAudioChannel OUTPUT_AUDIO_CHANNEL_RIGHT
public static IPlayer.OutputAudioChannel[] values()
for (IPlayer.OutputAudioChannel c : IPlayer.OutputAudioChannel.values()) System.out.println(c);
public static IPlayer.OutputAudioChannel 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 int getValue()