Enum ZegoReverbPreset

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<ZegoReverbPreset>

    public enum ZegoReverbPreset
    extends java.lang.Enum<ZegoReverbPreset>
    Reverberation preset value.
    • Enum Constant Detail

      • SOFT_ROOM

        public static final ZegoReverbPreset SOFT_ROOM
        Soft room reverb effect
      • LARGE_ROOM

        public static final ZegoReverbPreset LARGE_ROOM
        Large room reverb effect
      • CONCERT_HALL

        public static final ZegoReverbPreset CONCERT_HALL
        Concert hall reverb effect
      • RECORDING_STUDIO

        public static final ZegoReverbPreset RECORDING_STUDIO
        Recording studio reverb effect
      • BASEMENT

        public static final ZegoReverbPreset BASEMENT
        Basement reverb effect
      • VOCAL_CONCERT

        public static final ZegoReverbPreset VOCAL_CONCERT
        Vocal concert reverb effect
      • GRAMO_PHONE

        public static final ZegoReverbPreset GRAMO_PHONE
        Gramophone reverb effect
      • ENHANCED_KTV

        public static final ZegoReverbPreset ENHANCED_KTV
        Enhanced KTV reverb effect. Provide KTV effect with more concentrated voice and better brightness. Compared with the original KTV reverb effect, the reverberation time is shortened and the dry-wet ratio is increased.
      • ENHANCED_ROCK

        public static final ZegoReverbPreset ENHANCED_ROCK
        Enhanced Rock reverb effect
      • ENHANCED_MISTY

        public static final ZegoReverbPreset ENHANCED_MISTY
        Enhanced misty reverb effect
    • Method Detail

      • values

        public static ZegoReverbPreset[] 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 (ZegoReverbPreset c : ZegoReverbPreset.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ZegoReverbPreset 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 name
        java.lang.NullPointerException - if the argument is null
      • value

        public int value()
      • getZegoReverbPreset

        public static ZegoReverbPreset getZegoReverbPreset​(int value)