public static enum Constants.AudioDualMonoMode extends java.lang.Enum<Constants.AudioDualMonoMode>
Enum Constant and Description |
---|
AUDIO_DUAL_MONO_L
ChanLOut=ChanRout=ChanLin
|
AUDIO_DUAL_MONO_MIX
ChanLout=ChanRout=(ChanLin+ChanRin)/2
|
AUDIO_DUAL_MONO_R
ChanLOut=ChanRout=ChanRin
|
AUDIO_DUAL_MONO_STEREO
ChanLOut=ChanLin, ChanRout=ChanRin
|
Modifier and Type | Method and Description |
---|---|
static int |
getValue(Constants.AudioDualMonoMode mode) |
static Constants.AudioDualMonoMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.AudioDualMonoMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.AudioDualMonoMode AUDIO_DUAL_MONO_STEREO
public static final Constants.AudioDualMonoMode AUDIO_DUAL_MONO_L
public static final Constants.AudioDualMonoMode AUDIO_DUAL_MONO_R
public static final Constants.AudioDualMonoMode AUDIO_DUAL_MONO_MIX
public static Constants.AudioDualMonoMode[] values()
for (Constants.AudioDualMonoMode c : Constants.AudioDualMonoMode.values()) System.out.println(c);
public static Constants.AudioDualMonoMode 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 int getValue(Constants.AudioDualMonoMode mode)