@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)", date="2023-01-25T18:29:02.301Z") public enum ActionCategory extends java.lang.Enum<ActionCategory>
// MyAction is some action type that produces variables, like EcrSourceAction MyAction myAction = new MyAction(new MyActionProps() // ... .actionName("myAction") ); new OtherAction(new OtherActionProps() // ... .config(myAction.getVariables().getMyVariable()) .actionName("otherAction") );
Enum Constant and Description |
---|
APPROVAL |
BUILD |
DEPLOY |
INVOKE |
SOURCE |
TEST |
Modifier and Type | Method and Description |
---|---|
static ActionCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ActionCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionCategory SOURCE
public static final ActionCategory BUILD
public static final ActionCategory TEST
public static final ActionCategory APPROVAL
public static final ActionCategory DEPLOY
public static final ActionCategory INVOKE
public static ActionCategory[] values()
for (ActionCategory c : ActionCategory.values()) System.out.println(c);
public static ActionCategory 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