public static enum LVConstants.LVAudioMixingMode extends java.lang.Enum<LVConstants.LVAudioMixingMode>
Enum Constant and Description |
---|
PLAYOUT_ONLY
伴奏音乐只用于本地播放,远端听不到伴奏音乐
|
REPLACE_MIC
替换microphone采集声音,本地和远端都只播放伴奏音乐
|
REPLACE_MIC_AND_SEND_ONLY
伴奏替换microphone采集声音,同时伴奏声音只用于发送
|
SEND_AND_PLAYOUT
伴奏音乐本地和远端都可听到
|
SEND_ONLY
伴奏音乐只用于发送,本地听不到伴奏音乐,远端可听到
|
Modifier and Type | Method and Description |
---|---|
int |
value() |
static LVConstants.LVAudioMixingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LVConstants.LVAudioMixingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LVConstants.LVAudioMixingMode SEND_ONLY
public static final LVConstants.LVAudioMixingMode PLAYOUT_ONLY
public static final LVConstants.LVAudioMixingMode SEND_AND_PLAYOUT
public static final LVConstants.LVAudioMixingMode REPLACE_MIC
public static final LVConstants.LVAudioMixingMode REPLACE_MIC_AND_SEND_ONLY
public static LVConstants.LVAudioMixingMode[] values()
for (LVConstants.LVAudioMixingMode c : LVConstants.LVAudioMixingMode.values()) System.out.println(c);
public static LVConstants.LVAudioMixingMode 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 value()