public static enum Constants.BghvsSuppressionMode extends java.lang.Enum<Constants.BghvsSuppressionMode>
| Enum Constant and Description |
|---|
AGGRESSIVE
Aggressive: High suppression level.
|
MILD
Mild: Low suppression level.
|
MODERATE
Moderate: (Default) Moderate suppression level.
|
| Modifier and Type | Field and Description |
|---|---|
private int |
value |
| Modifier and Type | Method and Description |
|---|---|
static Constants.BghvsSuppressionMode |
fromInt(int value)
Converts an integer value to its corresponding BghvsSuppressionMode enum
constant.
|
int |
getValue()
Gets the integer value of the BghvsSuppressionMode.
|
static Constants.BghvsSuppressionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.BghvsSuppressionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.BghvsSuppressionMode MILD
public static final Constants.BghvsSuppressionMode MODERATE
public static final Constants.BghvsSuppressionMode AGGRESSIVE
public static Constants.BghvsSuppressionMode[] values()
for (Constants.BghvsSuppressionMode c : Constants.BghvsSuppressionMode.values()) System.out.println(c);
public static Constants.BghvsSuppressionMode 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.BghvsSuppressionMode fromInt(int value)
value - The integer value.