public static enum LiveTranscoding.AudioSampleRateType extends java.lang.Enum<LiveTranscoding.AudioSampleRateType>
Enum Constant and Description |
---|
TYPE_32000
32000: 32 kHz.
|
TYPE_44100
(Default) 44100: 44.1 kHz.
|
TYPE_48000
48000: 48 kHz.
|
Modifier and Type | Method and Description |
---|---|
static int |
getValue(LiveTranscoding.AudioSampleRateType type) |
static LiveTranscoding.AudioSampleRateType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LiveTranscoding.AudioSampleRateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LiveTranscoding.AudioSampleRateType TYPE_32000
public static final LiveTranscoding.AudioSampleRateType TYPE_44100
public static final LiveTranscoding.AudioSampleRateType TYPE_48000
public static LiveTranscoding.AudioSampleRateType[] values()
for (LiveTranscoding.AudioSampleRateType c : LiveTranscoding.AudioSampleRateType.values()) System.out.println(c);
public static LiveTranscoding.AudioSampleRateType 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(LiveTranscoding.AudioSampleRateType type)