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