Enum AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN
- java.lang.Object
-
- java.lang.Enum<AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN>
-
- org.kie.server.services.taskassigning.runtime.query.AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN
-
- All Implemented Interfaces:
Serializable,Comparable<AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN>
- Enclosing class:
- AbstractTaskAssigningQueryMapper<T>
public static enum AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN extends Enum<AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN>
Represents the columns returned by the "jbpm-task-assigning-human-task-with-user", "task-assigning-tasks-with-potential-owners-and-planning-task" and task-assigning-tasks-with-planning-task-optimized" queries. This enum must be kept in sync with any change on this queries.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTUAL_OWNERString with the task actual owner id.CREATED_ONA time stamp without time zone with the task creation date/time.DEPLOYMENT_IDA String with the deploymentId (containerId) to where the task belong.LAST_MODIFICATION_DATEA time stamp without time zone with the task last modification date.PLANNING_TASK_ASSIGNED_USERPLANNING_TASK_INDEXPLANNING_TASK_PUBLISHEDPLANNING_TASK_TASK_IDPOTENTIAL_OWNER_IDA String with a potential owner identifier for the task.POTENTIAL_OWNER_TYPEA String with the values "User" or "Group" indicating the type of the potential owner.PRIORITYAn Integer with the task priority.PROCESS_IDA String with the process identifier.PROCESS_INSTANCE_IDA Long value with the process instance id.STATUSA String value with the task status.TASK_IDA Long value with the taskId.TASK_NAMEA String with the task name.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringcolumnName()static AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMNvalueOf(String name)Returns the enum constant of this type with the specified name.static AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TASK_ID
public static final AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN TASK_ID
A Long value with the taskId. Is never null.
-
CREATED_ON
public static final AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN CREATED_ON
A time stamp without time zone with the task creation date/time. Is never null.
-
ACTUAL_OWNER
public static final AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN ACTUAL_OWNER
String with the task actual owner id. Can be null.
-
DEPLOYMENT_ID
public static final AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN DEPLOYMENT_ID
A String with the deploymentId (containerId) to where the task belong. Is never null.
-
TASK_NAME
public static final AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN TASK_NAME
A String with the task name. Is never null.
-
PRIORITY
public static final AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN PRIORITY
An Integer with the task priority. Is never null.
-
PROCESS_ID
public static final AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN PROCESS_ID
A String with the process identifier. Is never null.
-
PROCESS_INSTANCE_ID
public static final AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN PROCESS_INSTANCE_ID
A Long value with the process instance id. Is never null.
-
STATUS
public static final AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN STATUS
A String value with the task status. Is never null.
-
LAST_MODIFICATION_DATE
public static final AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN LAST_MODIFICATION_DATE
A time stamp without time zone with the task last modification date. Is never null.
-
PLANNING_TASK_TASK_ID
public static final AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN PLANNING_TASK_TASK_ID
-
PLANNING_TASK_ASSIGNED_USER
public static final AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN PLANNING_TASK_ASSIGNED_USER
-
PLANNING_TASK_INDEX
public static final AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN PLANNING_TASK_INDEX
-
PLANNING_TASK_PUBLISHED
public static final AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN PLANNING_TASK_PUBLISHED
-
POTENTIAL_OWNER_ID
public static final AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN POTENTIAL_OWNER_ID
A String with a potential owner identifier for the task. (a task can have many potential owners). Can be null.
-
POTENTIAL_OWNER_TYPE
public static final AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN POTENTIAL_OWNER_TYPE
A String with the values "User" or "Group" indicating the type of the potential owner. (a task can have many potential owners) If POTENTIAL_OWNER_ID != null => POTENTIAL_OWNER_TYPE != null. If POTENTIAL_OWNER_ID == null => POTENTIAL_OWNER_TYPE == null.
-
-
Method Detail
-
values
public static AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN[] 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 (AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN c : AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractTaskAssigningQueryMapper.TASK_QUERY_COLUMN 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
-
columnName
public String columnName()
-
-