@Generated public enum ActivityAction extends Enum<ActivityAction>
* `REJECT_TRANSITION_REQUEST`: Reject a transition request
* `CANCEL_TRANSITION_REQUEST`: Cancel (delete) a transition request
Enum Constant and Description |
---|
APPROVE_TRANSITION_REQUEST |
CANCEL_TRANSITION_REQUEST |
REJECT_TRANSITION_REQUEST |
Modifier and Type | Method and Description |
---|---|
static ActivityAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActivityAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActivityAction APPROVE_TRANSITION_REQUEST
public static final ActivityAction CANCEL_TRANSITION_REQUEST
public static final ActivityAction REJECT_TRANSITION_REQUEST
public static ActivityAction[] values()
for (ActivityAction c : ActivityAction.values()) System.out.println(c);
public static ActivityAction 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 nullCopyright © 2023. All rights reserved.