public enum ACAlarmType extends Enum<ACAlarmType>
| Enum Constant and Description |
|---|
APP |
DOMAIN |
HOST |
INSTANCE |
SERVICE |
SITE |
| Modifier and Type | Method and Description |
|---|---|
static ACAlarmType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ACAlarmType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ACAlarmType INSTANCE
public static final ACAlarmType APP
public static final ACAlarmType SERVICE
public static final ACAlarmType SITE
public static final ACAlarmType HOST
public static final ACAlarmType DOMAIN
public static ACAlarmType[] values()
for (ACAlarmType c : ACAlarmType.values()) System.out.println(c);
public static ACAlarmType 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.