Enum ZegoVoiceChangerType
- java.lang.Object
-
- java.lang.Enum<ZegoVoiceChangerType>
-
- com.zego.zegoavkit2.audioprocessing.ZegoVoiceChangerType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ZegoVoiceChangerType>
public enum ZegoVoiceChangerType extends java.lang.Enum<ZegoVoiceChangerType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AI_ROBOT
AI机器人AUTOBOT
汽车人音效BRIGHT
透亮CHANGER_OFF
关闭音效CLEAR
清澈DICTIONARIES
假音ELUSIVE
空灵FEMALE_ENERGETIC
女活力FEMALE_FRESH
清新女声音效FOREIGNER
外国人FULLNESS
饱满GENTLE
温柔HARMONIC_MINOR
和声小调电音HIGHLY_RESONANT
高亢LOUD_CLEAR
嘹亮MAJOR_C
C大调电音MALE_MAGNETIC
磁性男声音效MEN_TO_CHILD
男声变童声MEN_TO_WOMEN
男声变女声MINIONS
小黄人MINOR_A
A小调电音MUFFLED
低沉OPTIMUS_PRIME
汽车人OUT_OF_POWER
没电了音效RICHNESS
浑厚ROUNDNESS
圆润SUNSHINE
阳光SWEET
甜美SWEET_FEMAIL
女甜美SWEET_MALE
男甜美WOMEN_TO_CHILD
女声变童声WOMEN_TO_MEN
女声变男声
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getCode()
static ZegoVoiceChangerType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ZegoVoiceChangerType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHANGER_OFF
public static final ZegoVoiceChangerType CHANGER_OFF
关闭音效
-
OPTIMUS_PRIME
public static final ZegoVoiceChangerType OPTIMUS_PRIME
汽车人
-
AI_ROBOT
public static final ZegoVoiceChangerType AI_ROBOT
AI机器人
-
FOREIGNER
public static final ZegoVoiceChangerType FOREIGNER
外国人
-
ELUSIVE
public static final ZegoVoiceChangerType ELUSIVE
空灵
-
MALE_MAGNETIC
public static final ZegoVoiceChangerType MALE_MAGNETIC
磁性男声音效
-
FEMALE_FRESH
public static final ZegoVoiceChangerType FEMALE_FRESH
清新女声音效
-
MEN_TO_CHILD
public static final ZegoVoiceChangerType MEN_TO_CHILD
男声变童声
-
MEN_TO_WOMEN
public static final ZegoVoiceChangerType MEN_TO_WOMEN
男声变女声
-
WOMEN_TO_CHILD
public static final ZegoVoiceChangerType WOMEN_TO_CHILD
女声变童声
-
WOMEN_TO_MEN
public static final ZegoVoiceChangerType WOMEN_TO_MEN
女声变男声
-
FEMALE_ENERGETIC
public static final ZegoVoiceChangerType FEMALE_ENERGETIC
女活力
-
RICHNESS
public static final ZegoVoiceChangerType RICHNESS
浑厚
-
MUFFLED
public static final ZegoVoiceChangerType MUFFLED
低沉
-
ROUNDNESS
public static final ZegoVoiceChangerType ROUNDNESS
圆润
-
DICTIONARIES
public static final ZegoVoiceChangerType DICTIONARIES
假音
-
FULLNESS
public static final ZegoVoiceChangerType FULLNESS
饱满
-
CLEAR
public static final ZegoVoiceChangerType CLEAR
清澈
-
HIGHLY_RESONANT
public static final ZegoVoiceChangerType HIGHLY_RESONANT
高亢
-
LOUD_CLEAR
public static final ZegoVoiceChangerType LOUD_CLEAR
嘹亮
-
MINIONS
public static final ZegoVoiceChangerType MINIONS
小黄人
-
MAJOR_C
public static final ZegoVoiceChangerType MAJOR_C
C大调电音
-
MINOR_A
public static final ZegoVoiceChangerType MINOR_A
A小调电音
-
HARMONIC_MINOR
public static final ZegoVoiceChangerType HARMONIC_MINOR
和声小调电音
-
SUNSHINE
public static final ZegoVoiceChangerType SUNSHINE
阳光
-
GENTLE
public static final ZegoVoiceChangerType GENTLE
温柔
-
SWEET
public static final ZegoVoiceChangerType SWEET
甜美
-
SWEET_MALE
public static final ZegoVoiceChangerType SWEET_MALE
男甜美
-
SWEET_FEMAIL
public static final ZegoVoiceChangerType SWEET_FEMAIL
女甜美
-
BRIGHT
public static final ZegoVoiceChangerType BRIGHT
透亮
-
AUTOBOT
public static final ZegoVoiceChangerType AUTOBOT
汽车人音效
-
OUT_OF_POWER
public static final ZegoVoiceChangerType OUT_OF_POWER
没电了音效
-
-
Method Detail
-
values
public static ZegoVoiceChangerType[] 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 (ZegoVoiceChangerType c : ZegoVoiceChangerType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ZegoVoiceChangerType 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()
-
-