public static enum Constants.AIAecSuppressionMode extends java.lang.Enum<Constants.AIAecSuppressionMode>
| Enum Constant and Description |
|---|
CHAT_MODE
ChatMode: (Default) AIAec chat mode, which has an aggressive suppression
level.
|
PERFECT_SING_MODE
PerfectSingMode: AIAec sing mode, which has a minor suppression level.
|
SING_MODE
SingMode: AIAec sing mode, which has a mild suppression level.
|
SUPPER_SING_MODE
SupperSingMode: AIAec sing mode, which has a super mild suppression level.
|
| Modifier and Type | Field and Description |
|---|---|
private int |
value |
| Modifier and Type | Method and Description |
|---|---|
static Constants.AIAecSuppressionMode |
fromInt(int value)
Converts an integer value to its corresponding AIAecSuppressionMode enum
constant.
|
int |
getValue()
Gets the integer value of the AIAecSuppressionMode.
|
static Constants.AIAecSuppressionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.AIAecSuppressionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.AIAecSuppressionMode CHAT_MODE
public static final Constants.AIAecSuppressionMode SING_MODE
public static final Constants.AIAecSuppressionMode SUPPER_SING_MODE
public static final Constants.AIAecSuppressionMode PERFECT_SING_MODE
public static Constants.AIAecSuppressionMode[] values()
for (Constants.AIAecSuppressionMode c : Constants.AIAecSuppressionMode.values()) System.out.println(c);
public static Constants.AIAecSuppressionMode 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.AIAecSuppressionMode fromInt(int value)
value - The integer value.