Interface TaskInfoQuery<T extends TaskInfoQuery<?,​?>,​V extends TaskInfo>

  • All Superinterfaces:
    org.flowable.common.engine.api.query.Query<T,​V>
    All Known Subinterfaces:
    HistoricTaskInstanceQuery, TaskQuery

    public interface TaskInfoQuery<T extends TaskInfoQuery<?,​?>,​V extends TaskInfo>
    extends org.flowable.common.engine.api.query.Query<T,​V>
    Interface containing shared methods between the TaskQuery and the HistoricTaskInstanceQuery.
    Author:
    Joram Barrez
    • Method Detail

      • taskId

        T taskId​(String taskId)
        Only select tasks with the given task id (in practice, there will be maximum one of this kind)
      • taskIds

        T taskIds​(Collection<String> taskIds)
        Only select tasks with an id that is in the given list
        Throws:
        org.flowable.common.engine.api.FlowableIllegalArgumentException - When passed id list is empty or null or contains null String.
      • taskName

        T taskName​(String name)
        Only select tasks with the given name
      • taskNameIn

        T taskNameIn​(Collection<String> nameList)
        Only select tasks with a name that is in the given list
        Throws:
        org.flowable.common.engine.api.FlowableIllegalArgumentException - When passed name list is empty or null or contains null String.
      • taskNameInIgnoreCase

        T taskNameInIgnoreCase​(Collection<String> nameList)
        Only select tasks with a name that is in the given list This method, unlike the taskNameIn(Collection) method will not take in account the upper/lower case: both the input parameters as the column value are lowercased when the query is executed.
        Throws:
        org.flowable.common.engine.api.FlowableIllegalArgumentException - When passed name list is empty or null or contains null String.
      • taskNameLike

        T taskNameLike​(String nameLike)
        Only select tasks with a name matching the parameter. The syntax is that of SQL: for example usage: nameLike(%test%)
      • taskNameLikeIgnoreCase

        T taskNameLikeIgnoreCase​(String nameLike)
        Only select tasks with a name matching the parameter. The syntax is that of SQL: for example usage: nameLike(%test%) This method, unlike the taskNameLike(String) method will not take in account the upper/lower case: both the input parameter as the column value are lowercased when the query is executed.
      • taskDescription

        T taskDescription​(String description)
        Only select tasks with the given description.
      • taskDescriptionLike

        T taskDescriptionLike​(String descriptionLike)
        Only select tasks with a description matching the parameter . The syntax is that of SQL: for example usage: descriptionLike(%test%)
      • taskDescriptionLikeIgnoreCase

        T taskDescriptionLikeIgnoreCase​(String descriptionLike)
        Only select tasks with a description matching the parameter . The syntax is that of SQL: for example usage: descriptionLike(%test%) This method, unlike the taskDescriptionLike(String) method will not take in account the upper/lower case: both the input parameter as the column value are lowercased when the query is executed.
      • taskPriority

        T taskPriority​(Integer priority)
        Only select tasks with the given priority.
      • taskMinPriority

        T taskMinPriority​(Integer minPriority)
        Only select tasks with the given priority or higher.
      • taskMaxPriority

        T taskMaxPriority​(Integer maxPriority)
        Only select tasks with the given priority or lower.
      • taskAssignee

        T taskAssignee​(String assignee)
        Only select tasks which are assigned to the given user.
      • taskAssigneeLike

        T taskAssigneeLike​(String assigneeLike)
        Only select tasks which were last assigned to an assignee like the given value. The syntax that should be used is the same as in SQL, eg. %test%.
      • taskAssigneeLikeIgnoreCase

        T taskAssigneeLikeIgnoreCase​(String assigneeLikeIgnoreCase)
        Only select tasks which were last assigned to an assignee like the given value. The syntax that should be used is the same as in SQL, eg. %test%. This method, unlike the taskAssigneeLike(String) method will not take in account the upper/lower case: both the input parameter as the column value are lowercased when the query is executed.
      • taskUnassigned

        T taskUnassigned()
        Only select tasks which don't have an assignee.
      • taskAssigned

        T taskAssigned()
        Only select tasks which are assigned to any user
      • taskAssigneeIds

        T taskAssigneeIds​(Collection<String> assigneeListIds)
        Only select tasks with an assignee that is in the given list
        Throws:
        org.flowable.common.engine.api.FlowableIllegalArgumentException - When passed name list is empty or null or contains null String.
      • taskOwner

        T taskOwner​(String owner)
        Only select tasks for which the given user is the owner.
      • taskOwnerLike

        T taskOwnerLike​(String ownerLike)
        Only select tasks which were last assigned to an owner like the given value. The syntax that should be used is the same as in SQL, eg. %test%.
      • taskOwnerLikeIgnoreCase

        T taskOwnerLikeIgnoreCase​(String ownerLikeIgnoreCase)
        Only select tasks which were last assigned to an owner like the given value. The syntax that should be used is the same as in SQL, eg. %test%. This method, unlike the taskOwnerLike(String) method will not take in account the upper/lower case: both the input parameter as the column value are lowercased when the query is executed.
      • taskCandidateUser

        T taskCandidateUser​(String candidateUser)
        Only select tasks for which the given user is a candidate.
      • taskInvolvedUser

        T taskInvolvedUser​(String involvedUser)
        Only select tasks for which there exist an IdentityLink with the given user, including tasks which have been assigned to the given user (assignee) or owned by the given user (owner).
      • taskInvolvedGroups

        T taskInvolvedGroups​(Collection<String> involvedGroup)
        Only select tasks for which there exist an IdentityLink with the given Groups.
      • taskCandidateGroup

        T taskCandidateGroup​(String candidateGroup)
        Only select tasks for which users in the given group are candidates.
      • taskCandidateGroupIn

        T taskCandidateGroupIn​(Collection<String> candidateGroups)
        Only select tasks for which the 'candidateGroup' is one of the given groups.
        Throws:
        org.flowable.common.engine.api.FlowableIllegalArgumentException - When query is executed and taskCandidateGroup(String) or taskCandidateUser(String) has been executed on the query instance. When passed group list is empty or null.
      • taskTenantId

        T taskTenantId​(String tenantId)
        Only select tasks that have the given tenant id.
      • taskTenantIdLike

        T taskTenantIdLike​(String tenantIdLike)
        Only select tasks with a tenant id like the given one.
      • taskWithoutTenantId

        T taskWithoutTenantId()
        Only select tasks that do not have a tenant id.
      • processInstanceId

        T processInstanceId​(String processInstanceId)
        Only select tasks for the given process instance id.
      • processInstanceIdIn

        T processInstanceIdIn​(Collection<String> processInstanceIds)
        Only select tasks for the given process ids.
      • withoutProcessInstanceId

        T withoutProcessInstanceId()
        Only select tasks without a process instance id.
      • processInstanceBusinessKey

        T processInstanceBusinessKey​(String processInstanceBusinessKey)
        Only select tasks for the given business key
      • processInstanceBusinessKeyLike

        T processInstanceBusinessKeyLike​(String processInstanceBusinessKeyLike)
        Only select tasks with a business key like the given value The syntax is that of SQL: for example usage: processInstanceBusinessKeyLike("%test%").
      • processInstanceBusinessKeyLikeIgnoreCase

        T processInstanceBusinessKeyLikeIgnoreCase​(String processInstanceBusinessKeyLikeIgnoreCase)
        Only select tasks with a business key like the given value The syntax is that of SQL: for example usage: processInstanceBusinessKeyLike("%test%"). This method, unlike the processInstanceBusinessKeyLike(String) method will not take in account the upper/lower case: both the input parameter as the column value are lowercased when the query is executed.
      • executionId

        T executionId​(String executionId)
        Only select tasks for the given execution.
      • caseInstanceId

        T caseInstanceId​(String caseInstanceId)
        Only select tasks for the given case instance.
      • caseDefinitionId

        T caseDefinitionId​(String caseDefinitionId)
        Only select tasks for the given case definition.
      • caseDefinitionKey

        T caseDefinitionKey​(String caseDefinitionKey)
        Only select tasks which are part of a case instance which has the given case definition key.
      • caseDefinitionKeyLike

        T caseDefinitionKeyLike​(String caseDefinitionKeyLike)
        Only select tasks which are part of a case instance which has a case definition key like the given value. The syntax that should be used is the same as in SQL, eg. %test%.
      • caseDefinitionKeyLikeIgnoreCase

        T caseDefinitionKeyLikeIgnoreCase​(String caseDefinitionKeyLikeIgnoreCase)
        Only select tasks which are part of a case instance which has a case definition key like the given value. The syntax that should be used is the same as in SQL, eg. %test%. This method, unlike the caseDefinitionKeyLike(String) method will not take in account the upper/lower case: both the input parameter as the column value are lowercased when the query is executed.
      • caseDefinitionKeyIn

        T caseDefinitionKeyIn​(Collection<String> caseDefinitionKeys)
        Only select tasks that have a case definition for which the key is present in the given list
      • planItemInstanceId

        T planItemInstanceId​(String planItemInstanceId)
        Only select tasks for the given plan item instance.
      • scopeId

        T scopeId​(String scopeId)
        Only select tasks for the given scope identifier.
      • subScopeId

        T subScopeId​(String subScopeId)
        Only select tasks for the given sub scope identifier.
      • scopeType

        T scopeType​(String scopeType)
        Only select tasks for the given scope type.
      • scopeDefinitionId

        T scopeDefinitionId​(String scopeDefinitionId)
        Only select tasks for the given scope definition identifier.
      • propagatedStageInstanceId

        T propagatedStageInstanceId​(String propagatedStageInstanceId)
        Only select tasks for the given stage, defined through its stage instance id.
      • processInstanceIdWithChildren

        T processInstanceIdWithChildren​(String processInstanceId)
        Select all tasks for the given process instance id and its children.
      • caseInstanceIdWithChildren

        T caseInstanceIdWithChildren​(String caseInstanceId)
        Select all tasks for the given case instance id and its children.
      • taskCreatedOn

        T taskCreatedOn​(Date createTime)
        Only select tasks that are created on the given date.
      • taskCreatedBefore

        T taskCreatedBefore​(Date before)
        Only select tasks that are created before the given date.
      • taskCreatedAfter

        T taskCreatedAfter​(Date after)
        Only select tasks that are created after the given date.
      • taskCategory

        T taskCategory​(String category)
        Only select tasks with the given category.
      • taskCategoryIn

        T taskCategoryIn​(Collection<String> taskCategoryInList)
        Only select tasks belonging to one of the categories in the given list.
        Parameters:
        taskCategoryInList -
        Throws:
        org.flowable.common.engine.api.FlowableIllegalArgumentException - When passed category list is empty or null or contains null String.
      • taskCategoryNotIn

        T taskCategoryNotIn​(Collection<String> taskCategoryNotInList)
        Only select tasks with a defined category which do not belong to a category present in the given list.

        NOTE: This method does not return tasks without category e.g. tasks having a null category. To include null categories, use query.or().taskCategoryNotIn(...).taskWithoutCategory().endOr()

        Parameters:
        taskCategoryNotInList -
        Throws:
        org.flowable.common.engine.api.FlowableIllegalArgumentException - When passed category list is empty or null or contains null String.
        See Also:
        taskWithoutCategory()
      • taskWithoutCategory

        T taskWithoutCategory()
        Selects tasks without category.

        Can also be used in conjunction with other filter criteria to include tasks without category e.g. in or queries.

        See Also:
        taskCategoryNotIn(Collection)
      • taskWithFormKey

        T taskWithFormKey()
        Only select tasks with form key.
      • taskFormKey

        T taskFormKey​(String formKey)
        Only select tasks with the given formKey.
      • taskDefinitionKey

        T taskDefinitionKey​(String key)
        Only select tasks with the given taskDefinitionKey. The task definition key is the id of the userTask: <userTask id="xxx" .../>
      • taskDefinitionKeyLike

        T taskDefinitionKeyLike​(String keyLike)
        Only select tasks with a taskDefinitionKey that match the given parameter. The syntax is that of SQL: for example usage: taskDefinitionKeyLike("%test%"). The task definition key is the id of the userTask: <userTask id="xxx" .../>
      • taskDefinitionKeys

        T taskDefinitionKeys​(Collection<String> keys)
        Only select tasks with the given taskDefinitionKeys. The task definition key is the id of the userTask: <userTask id="xxx" .../>
      • taskDueDate

        T taskDueDate​(Date dueDate)
        Only select tasks with the given due date.
      • taskDueBefore

        T taskDueBefore​(Date dueDate)
        Only select tasks which have a due date before the given date.
      • taskDueAfter

        T taskDueAfter​(Date dueDate)
        Only select tasks which have a due date after the given date.
      • withoutTaskDueDate

        T withoutTaskDueDate()
        Only select tasks with no due date.
      • processDefinitionKey

        T processDefinitionKey​(String processDefinitionKey)
        Only select tasks which are part of a process instance which has the given process definition key.
      • processDefinitionKeyLike

        T processDefinitionKeyLike​(String processDefinitionKeyLike)
        Only select tasks which are part of a process instance which has a process definition key like the given value. The syntax that should be used is the same as in SQL, eg. %test%.
      • processDefinitionKeyLikeIgnoreCase

        T processDefinitionKeyLikeIgnoreCase​(String processDefinitionKeyLikeIgnoreCase)
        Only select tasks which are part of a process instance which has a process definition key like the given value. The syntax that should be used is the same as in SQL, eg. %test%. This method, unlike the processDefinitionKeyLike(String) method will not take in account the upper/lower case: both the input parameter as the column value are lowercased when the query is executed.
      • processDefinitionKeyIn

        T processDefinitionKeyIn​(Collection<String> processDefinitionKeys)
        Only select tasks that have a process definition for which the key is present in the given list
      • taskDefinitionId

        T taskDefinitionId​(String taskDefinitionId)
        Only select tasks which created from the given task definition referenced by id.
      • processDefinitionId

        T processDefinitionId​(String processDefinitionId)
        Only select tasks which are part of a process instance which has the given process definition id.
      • processDefinitionName

        T processDefinitionName​(String processDefinitionName)
        Only select tasks which are part of a process instance which has the given process definition name.
      • processDefinitionNameLike

        T processDefinitionNameLike​(String processDefinitionNameLike)
        Only select tasks which are part of a process instance which has a process definition name like the given value. The syntax that should be used is the same as in SQL, eg. %test%.
      • processCategoryIn

        T processCategoryIn​(Collection<String> processCategoryInList)
        Only select tasks which are part of a process instance whose definition belongs to the category which is present in the given list.
        Parameters:
        processCategoryInList -
        Throws:
        org.flowable.common.engine.api.FlowableIllegalArgumentException - When passed category list is empty or null or contains null String.
      • processCategoryNotIn

        T processCategoryNotIn​(Collection<String> processCategoryNotInList)
        Only select tasks which are part of a process instance whose definition does not belong to the category which is present in the given list.
        Parameters:
        processCategoryNotInList -
        Throws:
        org.flowable.common.engine.api.FlowableIllegalArgumentException - When passed category list is empty or null or contains null String.
      • deploymentId

        T deploymentId​(String deploymentId)
        Only select tasks which are part of a process instance which has the given deployment id.
      • deploymentIdIn

        T deploymentIdIn​(Collection<String> deploymentIds)
        Only select tasks which are part of a process instance which has the given deployment id.
      • cmmnDeploymentId

        T cmmnDeploymentId​(String cmmnDeploymentId)
        Only select tasks which are related to a case instance for to the given deployment id.
      • cmmnDeploymentIdIn

        T cmmnDeploymentIdIn​(Collection<String> cmmnDeploymentIds)
        Only select tasks which are related to a case instances for the given deployment id.
      • withoutScopeId

        T withoutScopeId()
        Only select tasks which don't have a scope id set.
      • taskVariableValueEquals

        T taskVariableValueEquals​(String variableName,
                                  Object variableValue)
        Only select tasks which have a local task variable with the given name set to the given value.
      • taskVariableValueEquals

        T taskVariableValueEquals​(Object variableValue)
        Only select tasks which have at least one local task variable with the given value.
      • taskVariableValueEqualsIgnoreCase

        T taskVariableValueEqualsIgnoreCase​(String name,
                                            String value)
        Only select tasks which have a local string variable with the given value, case insensitive.

        This method only works if your database has encoding/collation that supports case-sensitive queries. For example, use "collate UTF-8" on MySQL and for MSSQL, select one of the case-sensitive Collations available (MSDN Server Collation Reference).

      • taskVariableValueNotEquals

        T taskVariableValueNotEquals​(String variableName,
                                     Object variableValue)
        Only select tasks which have a local task variable with the given name, but with a different value than the passed value. Byte-arrays and Serializable objects (which are not primitive type wrappers) are not supported.
      • taskVariableValueNotEqualsIgnoreCase

        T taskVariableValueNotEqualsIgnoreCase​(String name,
                                               String value)
        Only select tasks which have a local string variable with is not the given value, case insensitive.

        This method only works if your database has encoding/collation that supports case-sensitive queries. For example, use "collate UTF-8" on MySQL and for MSSQL, select one of the case-sensitive Collations available (MSDN Server Collation Reference).

      • taskVariableValueGreaterThan

        T taskVariableValueGreaterThan​(String name,
                                       Object value)
        Only select tasks which have a local variable value greater than the passed value when they ended. Booleans, Byte-arrays and Serializable objects (which are not primitive type wrappers) are not supported.
        Parameters:
        name - cannot be null.
        value - cannot be null.
      • taskVariableValueGreaterThanOrEqual

        T taskVariableValueGreaterThanOrEqual​(String name,
                                              Object value)
        Only select tasks which have a local variable value greater than or equal to the passed value when they ended. Booleans, Byte-arrays and Serializable objects (which are not primitive type wrappers) are not supported.
        Parameters:
        name - cannot be null.
        value - cannot be null.
      • taskVariableValueLessThan

        T taskVariableValueLessThan​(String name,
                                    Object value)
        Only select tasks which have a local variable value less than the passed value when the ended.Booleans, Byte-arrays and Serializable objects (which are not primitive type wrappers) are not supported.
        Parameters:
        name - cannot be null.
        value - cannot be null.
      • taskVariableValueLessThanOrEqual

        T taskVariableValueLessThanOrEqual​(String name,
                                           Object value)
        Only select tasks which have a local variable value less than or equal to the passed value when they ended. Booleans, Byte-arrays and Serializable objects (which are not primitive type wrappers) are not supported.
        Parameters:
        name - cannot be null.
        value - cannot be null.
      • taskVariableValueLike

        T taskVariableValueLike​(String name,
                                String value)
        Only select tasks which have a local variable value like the given value when they ended. This can be used on string variables only.
        Parameters:
        name - cannot be null.
        value - cannot be null. The string can include the wildcard character '%' to express like-strategy: starts with (string%), ends with (%string) or contains (%string%).
      • taskVariableValueLikeIgnoreCase

        T taskVariableValueLikeIgnoreCase​(String name,
                                          String value)
        Only select tasks which have a local variable value like the given value (case insensitive) when they ended. This can be used on string variables only.
        Parameters:
        name - cannot be null.
        value - cannot be null. The string can include the wildcard character '%' to express like-strategy: starts with (string%), ends with (%string) or contains (%string%).
      • taskVariableExists

        T taskVariableExists​(String name)
        Only select tasks which have a local variable with the given name.
        Parameters:
        name - cannot be null.
      • taskVariableNotExists

        T taskVariableNotExists​(String name)
        Only select tasks which does not have a local variable with the given name.
        Parameters:
        name - cannot be null.
      • processVariableValueEquals

        T processVariableValueEquals​(String variableName,
                                     Object variableValue)
        Only select tasks which are part of a process that has a variable with the given name set to the given value.
      • processVariableValueEquals

        T processVariableValueEquals​(Object variableValue)
        Only select tasks which are part of a process that has at least one variable with the given value.
      • processVariableValueEqualsIgnoreCase

        T processVariableValueEqualsIgnoreCase​(String name,
                                               String value)
        Only select tasks which are part of a process that has a local string variable which is not the given value, case insensitive.

        This method only works if your database has encoding/collation that supports case-sensitive queries. For example, use "collate UTF-8" on MySQL and for MSSQL, select one of the case-sensitive Collations available (MSDN Server Collation Reference).

      • processVariableValueNotEquals

        T processVariableValueNotEquals​(String variableName,
                                        Object variableValue)
        Only select tasks which have a variable with the given name, but with a different value than the passed value. Byte-arrays and Serializable objects (which are not primitive type wrappers) are not supported.
      • processVariableValueNotEqualsIgnoreCase

        T processVariableValueNotEqualsIgnoreCase​(String name,
                                                  String value)
        Only select tasks which are part of a process that has a string variable with the given value, case insensitive.

        This method only works if your database has encoding/collation that supports case-sensitive queries. For example, use "collate UTF-8" on MySQL and for MSSQL, select one of the case-sensitive Collations available (MSDN Server Collation Reference).

      • processVariableValueGreaterThan

        T processVariableValueGreaterThan​(String name,
                                          Object value)
        Only select tasks which have a global variable value greater than the passed value when they ended. Booleans, Byte-arrays and Serializable objects (which are not primitive type wrappers) are not supported.
        Parameters:
        name - cannot be null.
        value - cannot be null.
      • processVariableValueGreaterThanOrEqual

        T processVariableValueGreaterThanOrEqual​(String name,
                                                 Object value)
        Only select tasks which have a global variable value greater than or equal to the passed value when they ended. Booleans, Byte-arrays and Serializable objects (which are not primitive type wrappers) are not supported.
        Parameters:
        name - cannot be null.
        value - cannot be null.
      • processVariableValueLessThan

        T processVariableValueLessThan​(String name,
                                       Object value)
        Only select tasks which have a global variable value less than the passed value when the ended.Booleans, Byte-arrays and Serializable objects (which are not primitive type wrappers) are not supported.
        Parameters:
        name - cannot be null.
        value - cannot be null.
      • processVariableValueLessThanOrEqual

        T processVariableValueLessThanOrEqual​(String name,
                                              Object value)
        Only select tasks which have a global variable value less than or equal to the passed value when they ended. Booleans, Byte-arrays and Serializable objects (which are not primitive type wrappers) are not supported.
        Parameters:
        name - cannot be null.
        value - cannot be null.
      • processVariableValueLike

        T processVariableValueLike​(String name,
                                   String value)
        Only select tasks which have a global variable value like the given value when they ended. This can be used on string variables only.
        Parameters:
        name - cannot be null.
        value - cannot be null. The string can include the wildcard character '%' to express like-strategy: starts with (string%), ends with (%string) or contains (%string%).
      • processVariableValueLikeIgnoreCase

        T processVariableValueLikeIgnoreCase​(String name,
                                             String value)
        Only select tasks which have a global variable value like the given value (case insensitive) when they ended. This can be used on string variables only.
        Parameters:
        name - cannot be null.
        value - cannot be null. The string can include the wildcard character '%' to express like-strategy: starts with (string%), ends with (%string) or contains (%string%).
      • processVariableExists

        T processVariableExists​(String name)
        Only select tasks which have a global variable with the given name.
        Parameters:
        name - cannot be null.
      • processVariableNotExists

        T processVariableNotExists​(String name)
        Only select tasks which does not have a global variable with the given name.
        Parameters:
        name - cannot be null.
      • caseVariableValueEquals

        T caseVariableValueEquals​(String variableName,
                                  Object variableValue)
        Only select tasks which are part of a case that has a variable with the given name set to the given value.
      • caseVariableValueEquals

        T caseVariableValueEquals​(Object variableValue)
        Only select tasks which are part of a case that has at least one variable with the given value.
      • caseVariableValueEqualsIgnoreCase

        T caseVariableValueEqualsIgnoreCase​(String name,
                                            String value)
        Only select tasks which are part of a case that has a local string variable which is not the given value, case insensitive.

        This method only works if your database has encoding/collation that supports case-sensitive queries. For example, use "collate UTF-8" on MySQL and for MSSQL, select one of the case-sensitive Collations available (MSDN Server Collation Reference).

      • caseVariableValueNotEquals

        T caseVariableValueNotEquals​(String variableName,
                                     Object variableValue)
        Only select tasks which have a variable with the given name, but with a different value than the passed value. Byte-arrays and Serializable objects (which are not primitive type wrappers) are not supported.
      • caseVariableValueNotEqualsIgnoreCase

        T caseVariableValueNotEqualsIgnoreCase​(String name,
                                               String value)
        Only select tasks which are part of a case that has a string variable with the given value, case insensitive.

        This method only works if your database has encoding/collation that supports case-sensitive queries. For example, use "collate UTF-8" on MySQL and for MSSQL, select one of the case-sensitive Collations available (MSDN Server Collation Reference).

      • caseVariableValueGreaterThan

        T caseVariableValueGreaterThan​(String name,
                                       Object value)
        Only select tasks which have a global variable value greater than the passed value when they ended. Booleans, Byte-arrays and Serializable objects (which are not primitive type wrappers) are not supported.
        Parameters:
        name - cannot be null.
        value - cannot be null.
      • caseVariableValueGreaterThanOrEqual

        T caseVariableValueGreaterThanOrEqual​(String name,
                                              Object value)
        Only select tasks which have a global variable value greater than or equal to the passed value when they ended. Booleans, Byte-arrays and Serializable objects (which are not primitive type wrappers) are not supported.
        Parameters:
        name - cannot be null.
        value - cannot be null.
      • caseVariableValueLessThan

        T caseVariableValueLessThan​(String name,
                                    Object value)
        Only select tasks which have a global variable value less than the passed value when the ended.Booleans, Byte-arrays and Serializable objects (which are not primitive type wrappers) are not supported.
        Parameters:
        name - cannot be null.
        value - cannot be null.
      • caseVariableValueLessThanOrEqual

        T caseVariableValueLessThanOrEqual​(String name,
                                           Object value)
        Only select tasks which have a global variable value less than or equal to the passed value when they ended. Booleans, Byte-arrays and Serializable objects (which are not primitive type wrappers) are not supported.
        Parameters:
        name - cannot be null.
        value - cannot be null.
      • caseVariableValueLike

        T caseVariableValueLike​(String name,
                                String value)
        Only select tasks which have a global variable value like the given value when they ended. This can be used on string variables only.
        Parameters:
        name - cannot be null.
        value - cannot be null. The string can include the wildcard character '%' to express like-strategy: starts with (string%), ends with (%string) or contains (%string%).
      • caseVariableValueLikeIgnoreCase

        T caseVariableValueLikeIgnoreCase​(String name,
                                          String value)
        Only select tasks which have a global variable value like the given value (case insensitive) when they ended. This can be used on string variables only.
        Parameters:
        name - cannot be null.
        value - cannot be null. The string can include the wildcard character '%' to express like-strategy: starts with (string%), ends with (%string) or contains (%string%).
      • caseVariableExists

        T caseVariableExists​(String name)
        Only select tasks which have a global variable with the given name.
        Parameters:
        name - cannot be null.
      • caseVariableNotExists

        T caseVariableNotExists​(String name)
        Only select tasks which does not have a global variable with the given name.
        Parameters:
        name - cannot be null.
      • includeTaskLocalVariables

        T includeTaskLocalVariables()
        Include local task variables in the task query result
      • includeProcessVariables

        T includeProcessVariables()
        Include global process variables in the task query result
      • includeCaseVariables

        T includeCaseVariables()
        Include global case variables in the task query result
      • limitTaskVariables

        @Deprecated
        T limitTaskVariables​(Integer taskVariablesLimit)
        Deprecated.
        no longer needed, this is a noop
        Limit task variables
      • includeIdentityLinks

        T includeIdentityLinks()
        Include identity links in the task query result
      • locale

        T locale​(String locale)
        Localize task name and description to specified locale.
      • withLocalizationFallback

        T withLocalizationFallback()
        Instruct localization to fallback to more general locales including the default locale of the JVM if the specified locale is not found.
      • or

        T or()
        All query clauses called will be added to a single or-statement. This or-statement will be included with the other already existing clauses in the query, joined by an 'and'.

        Calling endOr() will add all clauses to the regular query again. Calling or() after or() has been called or calling endOr() after endOr() has been called will result in an exception. It is possible to call or() endOr() several times if each or() has a matching endOr(), e.g.:

        query.<ConditionA> .or().<conditionB>.<conditionC>.endOr() .<conditionD>.<conditionE> .or().<conditionF>.<conditionG>.endOr()

        will result in: conditionA & (conditionB | conditionC) & conditionD & conditionE & (conditionF | conditionG)

      • endOr

        T endOr()
      • orderByTaskId

        T orderByTaskId()
        Order by task id (needs to be followed by Query.asc() or Query.desc()).
      • orderByTaskName

        T orderByTaskName()
        Order by task name (needs to be followed by Query.asc() or Query.desc()).
      • orderByTaskDescription

        T orderByTaskDescription()
        Order by description (needs to be followed by Query.asc() or Query.desc()).
      • orderByTaskPriority

        T orderByTaskPriority()
        Order by priority (needs to be followed by Query.asc() or Query.desc()).
      • orderByTaskAssignee

        T orderByTaskAssignee()
        Order by assignee (needs to be followed by Query.asc() or Query.desc()).
      • orderByTaskCreateTime

        T orderByTaskCreateTime()
        Order by the time on which the tasks were created (needs to be followed by Query.asc() or Query.desc()).
      • orderByProcessInstanceId

        T orderByProcessInstanceId()
        Order by process instance id (needs to be followed by Query.asc() or Query.desc()).
      • orderByExecutionId

        T orderByExecutionId()
        Order by execution id (needs to be followed by Query.asc() or Query.desc()).
      • orderByProcessDefinitionId

        T orderByProcessDefinitionId()
        Order by process definition id (needs to be followed by Query.asc() or Query.desc()).
      • orderByTaskDueDate

        T orderByTaskDueDate()
        Order by task due date (needs to be followed by Query.asc() or Query.desc()).
      • orderByTaskOwner

        T orderByTaskOwner()
        Order by task owner (needs to be followed by Query.asc() or Query.desc()).
      • orderByTaskDefinitionKey

        T orderByTaskDefinitionKey()
        Order by task definition key (needs to be followed by Query.asc() or Query.desc()).
      • orderByTenantId

        T orderByTenantId()
        Order by tenant id (needs to be followed by Query.asc() or Query.desc()).
      • orderByDueDateNullsFirst

        T orderByDueDateNullsFirst()
        Order by due date (needs to be followed by Query.asc() or Query.desc()). If any of the tasks have null for the due date, these will be first in the result.
      • orderByDueDateNullsLast

        T orderByDueDateNullsLast()
        Order by due date (needs to be followed by Query.asc() or Query.desc()). If any of the tasks have null for the due date, these will be last in the result.
      • orderByCategory

        T orderByCategory()
        Order by category (needs to be followed by Query.asc() or Query.desc()).