Package com.adobe.aio.cloudmanager
Enum StepAction
- java.lang.Object
-
- java.lang.Enum<StepAction>
-
- com.adobe.aio.cloudmanager.StepAction
-
- All Implemented Interfaces:
Serializable
,Comparable<StepAction>
public enum StepAction extends Enum<StepAction>
Possible values of the Step State's Action property.- See Also:
- Adobe IO Events
-
-
Enum Constant Summary
Enum Constants Enum Constant Description approval
assetsTest
build
buildImage
codeQuality
contentAudit
deploy
functionalTest
loadTest
managed
productTest
reportPerformanceTest
schedule
securityTest
uiTest
validate
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StepAction
valueOf(String name)
Returns the enum constant of this type with the specified name.static StepAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
validate
public static final StepAction validate
-
build
public static final StepAction build
-
codeQuality
public static final StepAction codeQuality
-
buildImage
public static final StepAction buildImage
-
securityTest
public static final StepAction securityTest
-
loadTest
public static final StepAction loadTest
-
assetsTest
public static final StepAction assetsTest
-
reportPerformanceTest
public static final StepAction reportPerformanceTest
-
productTest
public static final StepAction productTest
-
functionalTest
public static final StepAction functionalTest
-
uiTest
public static final StepAction uiTest
-
contentAudit
public static final StepAction contentAudit
-
approval
public static final StepAction approval
-
schedule
public static final StepAction schedule
-
managed
public static final StepAction managed
-
deploy
public static final StepAction deploy
-
-
Method Detail
-
values
public static StepAction[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StepAction c : StepAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StepAction valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-