@Generated public enum SqlAlertState extends Enum<SqlAlertState>
* UNKNOWN: alert yet to be evaluated * OK: alert evaluated and did not fulfill trigger conditions * TRIGGERED: alert evaluated and fulfilled trigger conditions
| Modifier and Type | Method and Description |
|---|---|
static SqlAlertState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlAlertState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlAlertState OK
public static final SqlAlertState TRIGGERED
public static final SqlAlertState UNKNOWN
public static SqlAlertState[] values()
for (SqlAlertState c : SqlAlertState.values()) System.out.println(c);
public static SqlAlertState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024. All rights reserved.