public static enum AudioRecordManager.SamplingRate extends java.lang.Enum<AudioRecordManager.SamplingRate>
Enum Constant and Description |
---|
RC_SAMPLE_RATE_16000
16KHz
|
RC_SAMPLE_RATE_8000
8KHz
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static AudioRecordManager.SamplingRate |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AudioRecordManager.SamplingRate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AudioRecordManager.SamplingRate RC_SAMPLE_RATE_8000
public static final AudioRecordManager.SamplingRate RC_SAMPLE_RATE_16000
public static AudioRecordManager.SamplingRate[] values()
for (AudioRecordManager.SamplingRate c : AudioRecordManager.SamplingRate.values()) System.out.println(c);
public static AudioRecordManager.SamplingRate 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()