Package pro.taskana.task.api
Enum TaskCustomField
- java.lang.Object
-
- java.lang.Enum<TaskCustomField>
-
- pro.taskana.task.api.TaskCustomField
-
- All Implemented Interfaces:
Serializable,Comparable<TaskCustomField>
public enum TaskCustomField extends Enum<TaskCustomField>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TaskCustomFieldvalueOf(String name)Returns the enum constant of this type with the specified name.static TaskCustomField[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CUSTOM_1
public static final TaskCustomField CUSTOM_1
-
CUSTOM_2
public static final TaskCustomField CUSTOM_2
-
CUSTOM_3
public static final TaskCustomField CUSTOM_3
-
CUSTOM_4
public static final TaskCustomField CUSTOM_4
-
CUSTOM_5
public static final TaskCustomField CUSTOM_5
-
CUSTOM_6
public static final TaskCustomField CUSTOM_6
-
CUSTOM_7
public static final TaskCustomField CUSTOM_7
-
CUSTOM_8
public static final TaskCustomField CUSTOM_8
-
CUSTOM_9
public static final TaskCustomField CUSTOM_9
-
CUSTOM_10
public static final TaskCustomField CUSTOM_10
-
CUSTOM_11
public static final TaskCustomField CUSTOM_11
-
CUSTOM_12
public static final TaskCustomField CUSTOM_12
-
CUSTOM_13
public static final TaskCustomField CUSTOM_13
-
CUSTOM_14
public static final TaskCustomField CUSTOM_14
-
CUSTOM_15
public static final TaskCustomField CUSTOM_15
-
CUSTOM_16
public static final TaskCustomField CUSTOM_16
-
-
Method Detail
-
values
public static TaskCustomField[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TaskCustomField c : TaskCustomField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TaskCustomField valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-