Package pro.taskana.common.rest.models
Enum TaskanaPagedModelKeys
- java.lang.Object
-
- java.lang.Enum<TaskanaPagedModelKeys>
-
- pro.taskana.common.rest.models.TaskanaPagedModelKeys
-
- All Implemented Interfaces:
Serializable,Comparable<TaskanaPagedModelKeys>
public enum TaskanaPagedModelKeys extends Enum<TaskanaPagedModelKeys>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCESS_ITEMSCLASSIFICATIONSDISTRIBUTION_TARGETSTASK_COMMENTSTASKSWORKBASKET_DEFINITIONSWORKBASKETS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Optional<TaskanaPagedModelKeys>getEnumFromPropertyName(String propertyName)StringgetPropertyName()static TaskanaPagedModelKeysvalueOf(String name)Returns the enum constant of this type with the specified name.static TaskanaPagedModelKeys[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCESS_ITEMS
public static final TaskanaPagedModelKeys ACCESS_ITEMS
-
CLASSIFICATIONS
public static final TaskanaPagedModelKeys CLASSIFICATIONS
-
DISTRIBUTION_TARGETS
public static final TaskanaPagedModelKeys DISTRIBUTION_TARGETS
-
TASKS
public static final TaskanaPagedModelKeys TASKS
-
TASK_COMMENTS
public static final TaskanaPagedModelKeys TASK_COMMENTS
-
WORKBASKETS
public static final TaskanaPagedModelKeys WORKBASKETS
-
WORKBASKET_DEFINITIONS
public static final TaskanaPagedModelKeys WORKBASKET_DEFINITIONS
-
-
Method Detail
-
values
public static TaskanaPagedModelKeys[] 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 (TaskanaPagedModelKeys c : TaskanaPagedModelKeys.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TaskanaPagedModelKeys 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
-
getPropertyName
public String getPropertyName()
-
getEnumFromPropertyName
public static Optional<TaskanaPagedModelKeys> getEnumFromPropertyName(String propertyName)
-
-