Package org.flowable.form.api
Interface FormInstanceQuery
- All Superinterfaces:
Query<FormInstanceQuery,
FormInstance>
Allows programmatic querying of
FormInstance
s.- Author:
- Tijs Rademakers
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder
-
Method Summary
Modifier and TypeMethodDescriptionformDefinitionId
(String formDefinitionId) Only select submitted forms with the given form definition id.formDefinitionIdLike
(String formDefinitionIdLike) Only select submitted forms with a form definition id like the given string.Only select submitted forms with the given id.Only select submitted forms with the given ids.Order by submitted date (needs to be followed byQuery.asc()
orQuery.desc()
).Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).processDefinitionId
(String processDefinitionId) Only select submitted forms with the given process definition id.processDefinitionIdLike
(String processDefinitionIdLike) Only select submitted forms with a process definition id like the given string.processInstanceId
(String processInstanceId) Only select submitted forms with the given process instance id.processInstanceIdLike
(String processInstanceIdLike) Only select submitted forms with a process instance id like the given string.scopeDefinitionId
(String scopeDefinitionId) Only select submitted forms with the given scope definition id.Only select submitted forms with the given scope id.Only select submitted forms with the given scope type.submittedBy
(String submittedBy) Only select submitted forms with the given submitted by value.submittedByLike
(String submittedByLike) Only select submitted forms with a submitted by like the given string.submittedDate
(Date submittedDate) Only select submitted forms submitted on the given timesubmittedDateAfter
(Date afterTime) Only select submitted forms submitted after the given timesubmittedDateBefore
(Date beforeTime) Only select submitted forms submitted before the given timeOnly select submitted forms with the given task id.taskIdLike
(String taskIdLike) Only select submitted forms with a task id like the given string.Only select submitted forms that have the given tenant id.tenantIdLike
(String tenantIdLike) Only select submitted forms with a tenant id like the given one.Only select submitted forms that do not have a task id.Only select submitted forms that do not have a tenant id.
-
Method Details
-
id
Only select submitted forms with the given id. -
ids
Only select submitted forms with the given ids. -
formDefinitionId
Only select submitted forms with the given form definition id. -
formDefinitionIdLike
Only select submitted forms with a form definition id like the given string. -
taskId
Only select submitted forms with the given task id. -
taskIdLike
Only select submitted forms with a task id like the given string. -
processInstanceId
Only select submitted forms with the given process instance id. -
processInstanceIdLike
Only select submitted forms with a process instance id like the given string. -
processDefinitionId
Only select submitted forms with the given process definition id. -
processDefinitionIdLike
Only select submitted forms with a process definition id like the given string. -
scopeId
Only select submitted forms with the given scope id. -
scopeType
Only select submitted forms with the given scope type. -
scopeDefinitionId
Only select submitted forms with the given scope definition id. -
submittedDate
Only select submitted forms submitted on the given time -
submittedDateBefore
Only select submitted forms submitted before the given time -
submittedDateAfter
Only select submitted forms submitted after the given time -
submittedBy
Only select submitted forms with the given submitted by value. -
submittedByLike
Only select submitted forms with a submitted by like the given string. -
tenantId
Only select submitted forms that have the given tenant id. -
tenantIdLike
Only select submitted forms with a tenant id like the given one. -
withoutTenantId
FormInstanceQuery withoutTenantId()Only select submitted forms that do not have a tenant id. -
withoutTaskId
FormInstanceQuery withoutTaskId()Only select submitted forms that do not have a task id. -
orderBySubmittedDate
FormInstanceQuery orderBySubmittedDate()Order by submitted date (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByTenantId
FormInstanceQuery orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).
-