Package pro.taskana.task.api
Enum TaskCustomIntField
- java.lang.Object
-
- java.lang.Enum<TaskCustomIntField>
-
- pro.taskana.task.api.TaskCustomIntField
-
- All Implemented Interfaces:
Serializable,Comparable<TaskCustomIntField>
public enum TaskCustomIntField extends Enum<TaskCustomIntField>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CUSTOM_INT_1CUSTOM_INT_2CUSTOM_INT_3CUSTOM_INT_4CUSTOM_INT_5CUSTOM_INT_6CUSTOM_INT_7CUSTOM_INT_8
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TaskCustomIntFieldvalueOf(String name)Returns the enum constant of this type with the specified name.static TaskCustomIntField[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CUSTOM_INT_1
public static final TaskCustomIntField CUSTOM_INT_1
-
CUSTOM_INT_2
public static final TaskCustomIntField CUSTOM_INT_2
-
CUSTOM_INT_3
public static final TaskCustomIntField CUSTOM_INT_3
-
CUSTOM_INT_4
public static final TaskCustomIntField CUSTOM_INT_4
-
CUSTOM_INT_5
public static final TaskCustomIntField CUSTOM_INT_5
-
CUSTOM_INT_6
public static final TaskCustomIntField CUSTOM_INT_6
-
CUSTOM_INT_7
public static final TaskCustomIntField CUSTOM_INT_7
-
CUSTOM_INT_8
public static final TaskCustomIntField CUSTOM_INT_8
-
-
Method Detail
-
values
public static TaskCustomIntField[] 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 (TaskCustomIntField c : TaskCustomIntField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TaskCustomIntField 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
-
-