public enum UpgradeState extends Enum<UpgradeState>
Enum Constant and Description |
---|
CANCELLED
Enum value Cancelled.
|
COMPLETED
Enum value Completed.
|
FAULTED
Enum value Faulted.
|
ROLLING_FORWARD
Enum value RollingForward.
|
Modifier and Type | Method and Description |
---|---|
static UpgradeState |
fromString(String value)
Parses a serialized value to a UpgradeState instance.
|
String |
toString() |
static UpgradeState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UpgradeState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpgradeState ROLLING_FORWARD
public static final UpgradeState CANCELLED
public static final UpgradeState COMPLETED
public static final UpgradeState FAULTED
public static UpgradeState[] values()
for (UpgradeState c : UpgradeState.values()) System.out.println(c);
public static UpgradeState 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 nullpublic static UpgradeState fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<UpgradeState>
Copyright © 2019. All rights reserved.