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