public static enum UpdateTypes.State.Values extends java.lang.Enum<UpdateTypes.State.Values>
enum representing this enumeration class.
Ordinals have no semantic meaning (your code should not rely on them).
| Enum Constant and Description |
|---|
_UNKNOWN
Special
enum constant which is used to represent constants
that do not exist in this enumeration binding. |
INSTALL_FAILED
Represents
UpdateTypes.State.INSTALL_FAILED. |
INSTALL_IN_PROGRESS
Represents
UpdateTypes.State.INSTALL_IN_PROGRESS. |
ROLLBACK_IN_PROGRESS
Represents
UpdateTypes.State.ROLLBACK_IN_PROGRESS. |
STAGE_IN_PROGRESS
Represents
UpdateTypes.State.STAGE_IN_PROGRESS. |
UP_TO_DATE
Represents
UpdateTypes.State.UP_TO_DATE. |
UPDATES_PENDING
Represents
UpdateTypes.State.UPDATES_PENDING. |
| Modifier and Type | Method and Description |
|---|---|
static UpdateTypes.State.Values |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UpdateTypes.State.Values[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdateTypes.State.Values UP_TO_DATE
UpdateTypes.State.UP_TO_DATE.public static final UpdateTypes.State.Values UPDATES_PENDING
UpdateTypes.State.UPDATES_PENDING.public static final UpdateTypes.State.Values STAGE_IN_PROGRESS
UpdateTypes.State.STAGE_IN_PROGRESS.public static final UpdateTypes.State.Values INSTALL_IN_PROGRESS
UpdateTypes.State.INSTALL_IN_PROGRESS.public static final UpdateTypes.State.Values INSTALL_FAILED
UpdateTypes.State.INSTALL_FAILED.public static final UpdateTypes.State.Values ROLLBACK_IN_PROGRESS
UpdateTypes.State.ROLLBACK_IN_PROGRESS.public static final UpdateTypes.State.Values _UNKNOWN
enum constant which is used to represent constants
that do not exist in this enumeration binding. For example if a
client receives an enumeration constant that only exists in the
newer version of the API of the server, the client source code will
see it represented by _UNKNOWN constant, because its version
of the native Java enum lacks the new constant.public static UpdateTypes.State.Values[] values()
for (UpdateTypes.State.Values c : UpdateTypes.State.Values.values()) System.out.println(c);
public static UpdateTypes.State.Values 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 null