Enum ZegoVoiceReverbType
- java.lang.Object
-
- java.lang.Enum<ZegoVoiceReverbType>
-
- com.zego.zegoavkit2.audioprocessing.ZegoVoiceReverbType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ZegoVoiceReverbType>
public enum ZegoVoiceReverbType extends java.lang.Enum<ZegoVoiceReverbType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BASEMENT
地下室效果CONCERT_HALL
音乐厅效果GRAMOPHONE
留声机HIPHOP
嘻哈KTV
KTV 效果KTV2
KTV2 效果LARGE_AUDITORIUM
大教堂效果MISTY
飘渺(空旷)OFF
关闭混响效果POPULAR
流行效果RECORDING_STUDIO
录音棚效果ROCK
摇滚效果SOFT_ROOM
房间效果THREE_DIMENSIONAL_VOICE
3D人声VOCAL_CONCERT
演唱会效果WARM_CLUB
俱乐部(大房间)效果
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getCode()
static ZegoVoiceReverbType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ZegoVoiceReverbType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OFF
public static final ZegoVoiceReverbType OFF
关闭混响效果
-
SOFT_ROOM
public static final ZegoVoiceReverbType SOFT_ROOM
房间效果
-
WARM_CLUB
public static final ZegoVoiceReverbType WARM_CLUB
俱乐部(大房间)效果
-
CONCERT_HALL
public static final ZegoVoiceReverbType CONCERT_HALL
音乐厅效果
-
LARGE_AUDITORIUM
public static final ZegoVoiceReverbType LARGE_AUDITORIUM
大教堂效果
-
RECORDING_STUDIO
public static final ZegoVoiceReverbType RECORDING_STUDIO
录音棚效果
-
BASEMENT
public static final ZegoVoiceReverbType BASEMENT
地下室效果
-
KTV
public static final ZegoVoiceReverbType KTV
KTV 效果
-
POPULAR
public static final ZegoVoiceReverbType POPULAR
流行效果
-
ROCK
public static final ZegoVoiceReverbType ROCK
摇滚效果
-
VOCAL_CONCERT
public static final ZegoVoiceReverbType VOCAL_CONCERT
演唱会效果
-
HIPHOP
public static final ZegoVoiceReverbType HIPHOP
嘻哈
-
MISTY
public static final ZegoVoiceReverbType MISTY
飘渺(空旷)
-
THREE_DIMENSIONAL_VOICE
public static final ZegoVoiceReverbType THREE_DIMENSIONAL_VOICE
3D人声
-
GRAMOPHONE
public static final ZegoVoiceReverbType GRAMOPHONE
留声机
-
KTV2
public static final ZegoVoiceReverbType KTV2
KTV2 效果
-
-
Method Detail
-
values
public static ZegoVoiceReverbType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ZegoVoiceReverbType c : ZegoVoiceReverbType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ZegoVoiceReverbType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getCode
public int getCode()
-
-