public static enum Constants.AUDIO_REVERB_TYPE extends java.lang.Enum<Constants.AUDIO_REVERB_TYPE>
Enum Constant and Description |
---|
AUDIO_REVERB_DRY_LEVEL
Level of the dry signal (-20 to 10 dB).
|
AUDIO_REVERB_ROOM_SIZE
Room size of the reflection (0 to 100 dB).
|
AUDIO_REVERB_STRENGTH
Strength of the late reverberation (0 to 100).
|
AUDIO_REVERB_WET_DELAY
Length of the initial delay of the wet signal (0 to 200 ms)
|
AUDIO_REVERB_WET_LEVEL
Level of the early reflection signal (wet signal) (-20 to 10 dB).
|
Modifier and Type | Method and Description |
---|---|
static Constants.AUDIO_REVERB_TYPE |
fromInt(int v) |
int |
getValue() |
static Constants.AUDIO_REVERB_TYPE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.AUDIO_REVERB_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.AUDIO_REVERB_TYPE AUDIO_REVERB_DRY_LEVEL
public static final Constants.AUDIO_REVERB_TYPE AUDIO_REVERB_WET_LEVEL
public static final Constants.AUDIO_REVERB_TYPE AUDIO_REVERB_ROOM_SIZE
public static final Constants.AUDIO_REVERB_TYPE AUDIO_REVERB_WET_DELAY
public static final Constants.AUDIO_REVERB_TYPE AUDIO_REVERB_STRENGTH
public static Constants.AUDIO_REVERB_TYPE[] values()
for (Constants.AUDIO_REVERB_TYPE c : Constants.AUDIO_REVERB_TYPE.values()) System.out.println(c);
public static Constants.AUDIO_REVERB_TYPE valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getValue()
public static Constants.AUDIO_REVERB_TYPE fromInt(int v)