Package io.agora.rtc2

Enum Class Constants.AUDIO_REVERB_TYPE

java.lang.Object
java.lang.Enum<Constants.AUDIO_REVERB_TYPE>
io.agora.rtc2.Constants.AUDIO_REVERB_TYPE
All Implemented Interfaces:
Serializable, Comparable<Constants.AUDIO_REVERB_TYPE>, Constable
Enclosing class:
Constants

public static enum Constants.AUDIO_REVERB_TYPE extends Enum<Constants.AUDIO_REVERB_TYPE>
  • Enum Constant Details

    • AUDIO_REVERB_DRY_LEVEL

      public static final Constants.AUDIO_REVERB_TYPE AUDIO_REVERB_DRY_LEVEL
      0: The level of the dry signal (dB). The value is between -20 and 10.
    • AUDIO_REVERB_WET_LEVEL

      public static final Constants.AUDIO_REVERB_TYPE AUDIO_REVERB_WET_LEVEL
      1: The level of the early reflection signal (wet signal) (dB). The value is between -20 and 10.
    • AUDIO_REVERB_ROOM_SIZE

      public static final Constants.AUDIO_REVERB_TYPE AUDIO_REVERB_ROOM_SIZE
      2: The room size of the reflection. The value is between 0 and 100.
    • AUDIO_REVERB_WET_DELAY

      public static final Constants.AUDIO_REVERB_TYPE AUDIO_REVERB_WET_DELAY
      3: The length of the initial delay of the wet signal (ms). The value is between 0 and 200.
    • AUDIO_REVERB_STRENGTH

      public static final Constants.AUDIO_REVERB_TYPE AUDIO_REVERB_STRENGTH
      4: The reverberation strength. The value is between 0 and 100.
  • Method Details

    • values

      public static Constants.AUDIO_REVERB_TYPE[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Constants.AUDIO_REVERB_TYPE valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getValue

      public int getValue()
    • fromInt

      public static Constants.AUDIO_REVERB_TYPE fromInt(int v)