@Generated public enum ActivityType extends Enum<ActivityType>
* `REQUESTED_TRANSITION`: User requested the corresponding stage transition.
* `CANCELLED_REQUEST`: User cancelled an existing transition request.
* `APPROVED_REQUEST`: User approved the corresponding stage transition.
* `REJECTED_REQUEST`: User rejected the coressponding stage transition.
* `SYSTEM_TRANSITION`: For events performed as a side effect, such as archiving existing model versions in a stage.
| Enum Constant and Description |
|---|
APPLIED_TRANSITION |
APPROVED_REQUEST |
CANCELLED_REQUEST |
NEW_COMMENT |
REJECTED_REQUEST |
REQUESTED_TRANSITION |
SYSTEM_TRANSITION |
| Modifier and Type | Method and Description |
|---|---|
static ActivityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActivityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActivityType APPLIED_TRANSITION
public static final ActivityType APPROVED_REQUEST
public static final ActivityType CANCELLED_REQUEST
public static final ActivityType NEW_COMMENT
public static final ActivityType REJECTED_REQUEST
public static final ActivityType REQUESTED_TRANSITION
public static final ActivityType SYSTEM_TRANSITION
public static ActivityType[] values()
for (ActivityType c : ActivityType.values()) System.out.println(c);
public static ActivityType 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 © 2024. All rights reserved.