public enum EnumApplicationSetupCheck extends java.lang.Enum<EnumApplicationSetupCheck>
| Enum Constant and Description |
|---|
FAILED_CHECK
The FAILE d_ check.
|
PASSED_CHECK
The PASSE d_ check.
|
UNKNOWN
The UNKNOWN.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
Returns the String value of this enum.
|
static EnumApplicationSetupCheck |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumApplicationSetupCheck[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumApplicationSetupCheck PASSED_CHECK
public static final EnumApplicationSetupCheck FAILED_CHECK
public static final EnumApplicationSetupCheck UNKNOWN
public static EnumApplicationSetupCheck[] values()
for (EnumApplicationSetupCheck c : EnumApplicationSetupCheck.values()) System.out.println(c);
public static EnumApplicationSetupCheck valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()