public enum BlueGreenPhase extends java.lang.Enum<BlueGreenPhase>
| Enum Constant and Description |
|---|
COMPLETED |
CREATED |
IN_PROGRESS |
NOT_CREATED |
POST |
PREPARATION |
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
boolean |
isActiveSwitchoverOrCompleted() |
static BlueGreenPhase |
parsePhase(java.lang.String value,
java.lang.String version) |
static BlueGreenPhase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlueGreenPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlueGreenPhase NOT_CREATED
public static final BlueGreenPhase CREATED
public static final BlueGreenPhase PREPARATION
public static final BlueGreenPhase IN_PROGRESS
public static final BlueGreenPhase POST
public static final BlueGreenPhase COMPLETED
public static BlueGreenPhase[] values()
for (BlueGreenPhase c : BlueGreenPhase.values()) System.out.println(c);
public static BlueGreenPhase 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 nullpublic static BlueGreenPhase parsePhase(java.lang.String value, java.lang.String version)
public int getValue()
public boolean isActiveSwitchoverOrCompleted()