
public enum InfrastructureAlert extends Enum<InfrastructureAlert>
| Enum Constant and Description |
|---|
PERIODIC_TASK_BEHIND
Alert raised when a periodic task falls behind.
|
PERIODIC_TASK_FAILURE
Alert raised when the ASPICs temperature is too hot.
|
| Modifier and Type | Method and Description |
|---|---|
Alert |
getAlert() |
String |
getAlertId() |
String |
getDescription() |
static InfrastructureAlert |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InfrastructureAlert[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InfrastructureAlert PERIODIC_TASK_BEHIND
public static final InfrastructureAlert PERIODIC_TASK_FAILURE
public static InfrastructureAlert[] values()
for (InfrastructureAlert c : InfrastructureAlert.values()) System.out.println(c);
public static InfrastructureAlert 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 nullpublic String getAlertId()
public String getDescription()
public Alert getAlert()
Copyright © 2018 LSST. All rights reserved.