public static enum Script.Phase extends Enum<Script.Phase>
| Enum Constant and Description |
|---|
CREATE
Defines the provision-infra shell script type.
|
CREATE_AND_DELETE
Defines the provision-infra and destroy shell script type.
|
DEPLOY
Defines the deploy shell script type.
|
DESTROY
Defines the destroy-infra shell script type.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Script.Phase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Script.Phase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Script.Phase CREATE
public static final Script.Phase CREATE_AND_DELETE
public static final Script.Phase DEPLOY
public static final Script.Phase DESTROY
public static Script.Phase[] values()
for (Script.Phase c : Script.Phase.values()) System.out.println(c);
public static Script.Phase 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 String toString()
toString in class Enum<Script.Phase>Copyright © 2019 WSO2. All rights reserved.