Package im.zego.zegoexpress.constants
Enum ZegoVoiceChangerPreset
- java.lang.Object
-
- java.lang.Enum<ZegoVoiceChangerPreset>
-
- im.zego.zegoexpress.constants.ZegoVoiceChangerPreset
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ZegoVoiceChangerPreset>
public enum ZegoVoiceChangerPreset extends java.lang.Enum<ZegoVoiceChangerPreset>
Voice changer preset value.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANDROID
Android robot voice effectAUTOBOT
Autobot effectBRIGHT
Bright effect, only support iOSCLEAR
Clear effectETHEREAL
Ethereal voice effectFALSETTO
Falsetto effectFEMALE_ENERGETIC
Female Vitality Sound effectFEMALE_FRESH
Fresh(Female) voice effectFOREIGNER
Foreigner voice effectFULLNESS
Fullness effectGENTLE
Gentle effect, only support iOSHARMONIC_MINOR
Electronic effects in harmonic minor voice effectHIGHLY_RESONANT
Hight effectLOUD_CLEAR
Loud clear effectMAJOR_C
Electronic effects in C major voice effectMALE_MAGNETIC
Magnetic(Male) voice effectMEN_TO_CHILD
Male to child voice (loli voice effect)MEN_TO_WOMEN
Male to female voice (kindergarten voice effect)MINIONS
Minions effectMINOR_A
Electronic effects in A minor voice effectMUFFLED
Muffled effectNONE
No Voice changerOPTIMUS_PRIME
Autobot Optimus Prime voice effectOUT_OF_POWER
Out of power effectRICH_NESS
Richness effectROUNDNESS
Roundness effectSUNSHINE
Sunshine effect, only support iOSSWEET
Sweet effect, only support iOSSWEET_FEMALE
Sweet female effect, only support iOSSWEET_MALE
Sweet male effect, only support iOSWOMEN_TO_CHILD
Female to child voiceWOMEN_TO_MEN
Female to male voice
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ZegoVoiceChangerPreset
getZegoVoiceChangerPreset(int value)
int
value()
static ZegoVoiceChangerPreset
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ZegoVoiceChangerPreset[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final ZegoVoiceChangerPreset NONE
No Voice changer
-
MEN_TO_CHILD
public static final ZegoVoiceChangerPreset MEN_TO_CHILD
Male to child voice (loli voice effect)
-
MEN_TO_WOMEN
public static final ZegoVoiceChangerPreset MEN_TO_WOMEN
Male to female voice (kindergarten voice effect)
-
WOMEN_TO_CHILD
public static final ZegoVoiceChangerPreset WOMEN_TO_CHILD
Female to child voice
-
WOMEN_TO_MEN
public static final ZegoVoiceChangerPreset WOMEN_TO_MEN
Female to male voice
-
FOREIGNER
public static final ZegoVoiceChangerPreset FOREIGNER
Foreigner voice effect
-
OPTIMUS_PRIME
public static final ZegoVoiceChangerPreset OPTIMUS_PRIME
Autobot Optimus Prime voice effect
-
ANDROID
public static final ZegoVoiceChangerPreset ANDROID
Android robot voice effect
-
ETHEREAL
public static final ZegoVoiceChangerPreset ETHEREAL
Ethereal voice effect
-
MALE_MAGNETIC
public static final ZegoVoiceChangerPreset MALE_MAGNETIC
Magnetic(Male) voice effect
-
FEMALE_FRESH
public static final ZegoVoiceChangerPreset FEMALE_FRESH
Fresh(Female) voice effect
-
MAJOR_C
public static final ZegoVoiceChangerPreset MAJOR_C
Electronic effects in C major voice effect
-
MINOR_A
public static final ZegoVoiceChangerPreset MINOR_A
Electronic effects in A minor voice effect
-
HARMONIC_MINOR
public static final ZegoVoiceChangerPreset HARMONIC_MINOR
Electronic effects in harmonic minor voice effect
-
FEMALE_ENERGETIC
public static final ZegoVoiceChangerPreset FEMALE_ENERGETIC
Female Vitality Sound effect
-
RICH_NESS
public static final ZegoVoiceChangerPreset RICH_NESS
Richness effect
-
MUFFLED
public static final ZegoVoiceChangerPreset MUFFLED
Muffled effect
-
ROUNDNESS
public static final ZegoVoiceChangerPreset ROUNDNESS
Roundness effect
-
FALSETTO
public static final ZegoVoiceChangerPreset FALSETTO
Falsetto effect
-
FULLNESS
public static final ZegoVoiceChangerPreset FULLNESS
Fullness effect
-
CLEAR
public static final ZegoVoiceChangerPreset CLEAR
Clear effect
-
HIGHLY_RESONANT
public static final ZegoVoiceChangerPreset HIGHLY_RESONANT
Hight effect
-
LOUD_CLEAR
public static final ZegoVoiceChangerPreset LOUD_CLEAR
Loud clear effect
-
MINIONS
public static final ZegoVoiceChangerPreset MINIONS
Minions effect
-
SUNSHINE
public static final ZegoVoiceChangerPreset SUNSHINE
Sunshine effect, only support iOS
-
GENTLE
public static final ZegoVoiceChangerPreset GENTLE
Gentle effect, only support iOS
-
SWEET
public static final ZegoVoiceChangerPreset SWEET
Sweet effect, only support iOS
-
SWEET_MALE
public static final ZegoVoiceChangerPreset SWEET_MALE
Sweet male effect, only support iOS
-
SWEET_FEMALE
public static final ZegoVoiceChangerPreset SWEET_FEMALE
Sweet female effect, only support iOS
-
BRIGHT
public static final ZegoVoiceChangerPreset BRIGHT
Bright effect, only support iOS
-
AUTOBOT
public static final ZegoVoiceChangerPreset AUTOBOT
Autobot effect
-
OUT_OF_POWER
public static final ZegoVoiceChangerPreset OUT_OF_POWER
Out of power effect
-
-
Method Detail
-
values
public static ZegoVoiceChangerPreset[] 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 (ZegoVoiceChangerPreset c : ZegoVoiceChangerPreset.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ZegoVoiceChangerPreset 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
-
value
public int value()
-
getZegoVoiceChangerPreset
public static ZegoVoiceChangerPreset getZegoVoiceChangerPreset(int value)
-
-