public static enum Constants.AecSuppressionMode extends java.lang.Enum<Constants.AecSuppressionMode>
| Enum Constant and Description |
|---|
AGGRESSIVE_AEC
AggressiveAec: (Default) aggressive Aec suppression level.
|
EXTREME_AEC
ExtremeAec: extreme Aec suppression level.
|
MILD_AEC
MildAec: mild Aec suppression level.
|
NORMAL_AEC
NormalAec: normal Aec suppression level.
|
SUPER_AGGRESSIVE_AEC
SuperAggressiveAec: super Aec suppression level.
|
| Modifier and Type | Field and Description |
|---|---|
private int |
value |
| Modifier and Type | Method and Description |
|---|---|
static Constants.AecSuppressionMode |
fromInt(int value)
Converts an integer value to its corresponding AecSuppressionMode enum
constant.
|
int |
getValue()
Gets the integer value of the AecSuppressionMode.
|
static Constants.AecSuppressionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.AecSuppressionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.AecSuppressionMode MILD_AEC
public static final Constants.AecSuppressionMode NORMAL_AEC
public static final Constants.AecSuppressionMode AGGRESSIVE_AEC
public static final Constants.AecSuppressionMode SUPER_AGGRESSIVE_AEC
public static final Constants.AecSuppressionMode EXTREME_AEC
public static Constants.AecSuppressionMode[] values()
for (Constants.AecSuppressionMode c : Constants.AecSuppressionMode.values()) System.out.println(c);
public static Constants.AecSuppressionMode 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.AecSuppressionMode fromInt(int value)
value - The integer value.