public enum AudioCaptureMode extends java.lang.Enum<AudioCaptureMode>
Enum Constant and Description |
---|
CAPTURE
The audio content should be captured along with the video content.
|
IGNORE
The audio content should not be captured along with the video content.
|
Modifier and Type | Method and Description |
---|---|
static AudioCaptureMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AudioCaptureMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AudioCaptureMode CAPTURE
public static final AudioCaptureMode IGNORE
public static AudioCaptureMode[] values()
for (AudioCaptureMode c : AudioCaptureMode.values()) System.out.println(c);
public static AudioCaptureMode 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 null