public static enum Constants.RebootStatus extends Enum<Constants.RebootStatus>
| Enum Constant and Description |
|---|
DISPATCHED |
FAILED |
FINISHED |
| Modifier and Type | Method and Description |
|---|---|
static Constants.RebootStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.RebootStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.RebootStatus DISPATCHED
public static final Constants.RebootStatus FINISHED
public static final Constants.RebootStatus FAILED
public static Constants.RebootStatus[] values()
for (Constants.RebootStatus c : Constants.RebootStatus.values()) System.out.println(c);
public static Constants.RebootStatus 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.