Uses of Enum Class
ch.ivyteam.ivy.workflow.WorkflowPriority
Packages that use WorkflowPriority
Package
Description
-
Uses of WorkflowPriority in ch.ivyteam.ivy.workflow
Methods in ch.ivyteam.ivy.workflow that return WorkflowPriorityModifier and TypeMethodDescriptionITask.getExpiryPriority()Gets the expiry priority of the taskITask.getOriginalPriority()Gets the original priority of the taskICase.getPriority()Gets the priority of the caseITask.getPriority()Gets the priority of the taskMethods in ch.ivyteam.ivy.workflow with parameters of type WorkflowPriorityModifier and TypeMethodDescriptionvoidITask.setExpiryPriority(WorkflowPriority expiryPriority) Sets the expiry priority of the taskvoidITask.setOriginalPriority(WorkflowPriority originalPriority) Sets the original priority of the taskvoidICase.setPriority(WorkflowPriority priority) Sets the priority of the case -
Uses of WorkflowPriority in ch.ivyteam.ivy.workflow.query
Methods in ch.ivyteam.ivy.workflow.query that return types with arguments of type WorkflowPriorityModifier and TypeMethodDescriptionTaskQuery.IOrderByQueryColumns.expiryPriority()Adds an order by statement for the columnExpiryPriorityin the default direction ascending.
To change the order to descending useexpiryPriority().descending()TaskQuery.IOrderByQueryColumns.originalPriority()Adds an order by statement for the columnOriginalPriorityin the default direction ascending.
To change the order to descending useoriginalPriority().descending()CaseQuery.IOrderByQueryColumns.priority()Adds an order by statement for the columnPriorityin the default direction ascending.
To change the order to descending usepriority().descending()CaseQuery.OrderByQuery.priority()TaskQuery.IOrderByQueryColumns.priority()Adds an order by statement for the columnPriorityin the default direction ascending.
To change the order to descending usepriority().descending()Methods in ch.ivyteam.ivy.workflow.query with parameters of type WorkflowPriorityModifier and TypeMethodDescriptionCaseQuery.IWorkflowPriorityFilterQuery.isEqual(WorkflowPriority value) Adds a filter condition that selects rows with the givenvalue.TaskQuery.IWorkflowPriorityFilterQuery.isEqual(WorkflowPriority value) Adds a filter condition that selects rows with the givenvalue.CaseQuery.IWorkflowPriorityFilterQuery.isIn(WorkflowPriority... values) Adds a filter condition that selects rows that have values that are in the given list ofvalues.TaskQuery.IWorkflowPriorityFilterQuery.isIn(WorkflowPriority... values) Adds a filter condition that selects rows that have values that are in the given list ofvalues.CaseQuery.IWorkflowPriorityFilterQuery.isNotEqual(WorkflowPriority value) Adds a filter condition that selects the rows that do not have the givenvalue.TaskQuery.IWorkflowPriorityFilterQuery.isNotEqual(WorkflowPriority value) Adds a filter condition that selects the rows that do not have the givenvalue.CaseQuery.IWorkflowPriorityFilterQuery.isNotIn(WorkflowPriority... values) Adds a filter condition that selects rows that have values that are not in the given list ofvalues.TaskQuery.IWorkflowPriorityFilterQuery.isNotIn(WorkflowPriority... values) Adds a filter condition that selects rows that have values that are not in the given list ofvalues.Method parameters in ch.ivyteam.ivy.workflow.query with type arguments of type WorkflowPriorityModifier and TypeMethodDescriptionCaseQuery.IWorkflowPriorityFilterQuery.isIn(List<WorkflowPriority> values) Adds a filter condition that selects rows that have values that are in the given list ofvalues.TaskQuery.IWorkflowPriorityFilterQuery.isIn(List<WorkflowPriority> values) Adds a filter condition that selects rows that have values that are in the given list ofvalues.CaseQuery.IWorkflowPriorityFilterQuery.isNotIn(List<WorkflowPriority> values) Adds a filter condition that selects rows that have values that are not in the given list ofvalues.TaskQuery.IWorkflowPriorityFilterQuery.isNotIn(List<WorkflowPriority> values) Adds a filter condition that selects rows that have values that are not in the given list ofvalues.