public enum OperationLevel extends Enum<OperationLevel>
| Enum Constant and Description |
|---|
ALERT |
ALERT_READD |
| Modifier and Type | Method and Description |
|---|---|
static OperationLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperationLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationLevel ALERT_READD
public static final OperationLevel ALERT
public static OperationLevel[] values()
for (OperationLevel c : OperationLevel.values()) System.out.println(c);
public static OperationLevel 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 © 2021. All Rights Reserved.