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