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