@Generated public enum ActivityAction extends Enum<ActivityAction>
For activities, valid values are: * `APPROVE_TRANSITION_REQUEST`: Approve a transition request
* `REJECT_TRANSITION_REQUEST`: Reject a transition request
* `CANCEL_TRANSITION_REQUEST`: Cancel (delete) a transition request
For comments, valid values are: * `EDIT_COMMENT`: Edit the comment
* `DELETE_COMMENT`: Delete the comment
| Enum Constant and Description |
|---|
APPROVE_TRANSITION_REQUEST |
CANCEL_TRANSITION_REQUEST |
DELETE_COMMENT |
EDIT_COMMENT |
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 DELETE_COMMENT
public static final ActivityAction EDIT_COMMENT
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 © 2026. All rights reserved.