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