public static enum Constants.AgoraAudioProcessorEventType extends java.lang.Enum<Constants.AgoraAudioProcessorEventType>
| Enum Constant and Description |
|---|
KAEC_MALFUNCTION
kAecMalfunction: The AEC breaks down.
|
| Modifier and Type | Field and Description |
|---|---|
private int |
value |
| Modifier and Type | Method and Description |
|---|---|
static Constants.AgoraAudioProcessorEventType |
fromInt(int value)
Converts an integer value to its corresponding AgoraAudioProcessingEventType
enum constant.
|
int |
getValue()
Gets the integer value of the AgoraAudioProcessingEventType.
|
static Constants.AgoraAudioProcessorEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.AgoraAudioProcessorEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.AgoraAudioProcessorEventType KAEC_MALFUNCTION
public static Constants.AgoraAudioProcessorEventType[] values()
for (Constants.AgoraAudioProcessorEventType c : Constants.AgoraAudioProcessorEventType.values()) System.out.println(c);
public static Constants.AgoraAudioProcessorEventType 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.AgoraAudioProcessorEventType fromInt(int value)
value - The integer value.