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