public enum TaskHistoryEventType extends Enum<TaskHistoryEventType>
| Enum Constant and Description |
|---|
CANCELLED |
CLAIM_CANCELLED |
CLAIMED |
COMPLETED |
CREATED |
TERMINATED |
TRANSFERRED |
UPDATED |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static TaskHistoryEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskHistoryEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskHistoryEventType CREATED
public static final TaskHistoryEventType UPDATED
public static final TaskHistoryEventType CLAIMED
public static final TaskHistoryEventType CLAIM_CANCELLED
public static final TaskHistoryEventType COMPLETED
public static final TaskHistoryEventType CANCELLED
public static final TaskHistoryEventType TERMINATED
public static final TaskHistoryEventType TRANSFERRED
public static TaskHistoryEventType[] values()
for (TaskHistoryEventType c : TaskHistoryEventType.values()) System.out.println(c);
public static TaskHistoryEventType 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 nullpublic String getName()
Copyright © 2020. All rights reserved.