public static enum AlertMonitor.AlertLevel extends Enum<AlertMonitor.AlertLevel>
Enum Constant and Description |
---|
ERROR
Error - system is generating errors and failing.
|
NORMAL
Normal state
|
WARN
Warning - system is running but could be experiencing trouble that
could lead to an error.
|
Modifier and Type | Method and Description |
---|---|
static AlertMonitor.AlertLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlertMonitor.AlertLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlertMonitor.AlertLevel NORMAL
public static final AlertMonitor.AlertLevel WARN
public static final AlertMonitor.AlertLevel ERROR
public static AlertMonitor.AlertLevel[] values()
for (AlertMonitor.AlertLevel c : AlertMonitor.AlertLevel.values()) System.out.println(c);
public static AlertMonitor.AlertLevel 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 © 2025 Open Identity Platform Community. All rights reserved.