public enum AlertFeedback extends java.lang.Enum<AlertFeedback>
| Enum Constant and Description |
|---|
BENIGN_POSITIVE
benign Positive
|
FALSE_POSITIVE
false Positive
|
TRUE_POSITIVE
true Positive
|
UNEXPECTED_VALUE
For AlertFeedback values that were not expected from the service
|
UNKNOWN
unknown
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
| Modifier and Type | Method and Description |
|---|---|
static AlertFeedback |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AlertFeedback[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlertFeedback UNKNOWN
public static final AlertFeedback TRUE_POSITIVE
public static final AlertFeedback FALSE_POSITIVE
public static final AlertFeedback BENIGN_POSITIVE
public static final AlertFeedback UNKNOWN_FUTURE_VALUE
public static final AlertFeedback UNEXPECTED_VALUE
public static AlertFeedback[] values()
for (AlertFeedback c : AlertFeedback.values()) System.out.println(c);
public static AlertFeedback 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 null