public enum TaskHistoryCustomField extends Enum<TaskHistoryCustomField>
| Enum Constant and Description |
|---|
CUSTOM_1 |
CUSTOM_2 |
CUSTOM_3 |
CUSTOM_4 |
| Modifier and Type | Method and Description |
|---|---|
static TaskHistoryCustomField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskHistoryCustomField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskHistoryCustomField CUSTOM_1
public static final TaskHistoryCustomField CUSTOM_2
public static final TaskHistoryCustomField CUSTOM_3
public static final TaskHistoryCustomField CUSTOM_4
public static TaskHistoryCustomField[] values()
for (TaskHistoryCustomField c : TaskHistoryCustomField.values()) System.out.println(c);
public static TaskHistoryCustomField 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 © 2020. All rights reserved.