@Generated public enum CommentActivityAction extends Enum<CommentActivityAction>
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 CommentActivityAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommentActivityAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommentActivityAction APPROVE_TRANSITION_REQUEST
public static final CommentActivityAction CANCEL_TRANSITION_REQUEST
public static final CommentActivityAction DELETE_COMMENT
public static final CommentActivityAction EDIT_COMMENT
public static final CommentActivityAction REJECT_TRANSITION_REQUEST
public static CommentActivityAction[] values()
for (CommentActivityAction c : CommentActivityAction.values()) System.out.println(c);
public static CommentActivityAction 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.