public enum MixAudioSourceType extends java.lang.Enum<MixAudioSourceType>
| Enum Constant and Description |
|---|
MIX
mix both audio
Added in v3.19.0
|
Mute
mute
|
Original
audio from original video
|
Recorded
audio from recorded video
|
| Modifier and Type | Method and Description |
|---|---|
static MixAudioSourceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MixAudioSourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MixAudioSourceType Original
public static final MixAudioSourceType Recorded
public static final MixAudioSourceType Mute
public static final MixAudioSourceType MIX
public static MixAudioSourceType[] values()
for (MixAudioSourceType c : MixAudioSourceType.values()) System.out.println(c);
public static MixAudioSourceType 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