接口 org.activiti.engine.history.HistoricProcessInstanceQuery
的使用

使用 HistoricProcessInstanceQuery 的软件包
org.activiti.engine Public API of the Activiti engine. 
org.activiti.engine.history Classes related to the HistoryService
org.activiti.engine.impl API implementation classes, which shouldn't directly be used by end-users. 
 

org.activiti.engineHistoricProcessInstanceQuery 的使用
 

返回 HistoricProcessInstanceQueryorg.activiti.engine 中的方法
 HistoricProcessInstanceQuery HistoryService.createHistoricProcessInstanceQuery()
          Creates a new programmatic query to search for HistoricProcessInstances.
 

org.activiti.engine.historyHistoricProcessInstanceQuery 的使用
 

返回 HistoricProcessInstanceQueryorg.activiti.engine.history 中的方法
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.excludeSubprocesses(boolean excludeSubprocesses)
          Exclude sub processes from the query result;
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.finishDateBy(Date date)
          已过时。 will be removed in 5.12, use startedAfter(Date) and startedBefore(Date) instead
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.finishDateOn(Date date)
          已过时。 will be removed in 5.12, use startedAfter(Date) and startedBefore(Date) instead
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.finished()
          Only select historic process instances that are completely finished.
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.finishedAfter(Date date)
          Only select historic process instances that were started after the given date.
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.finishedBefore(Date date)
          Only select historic process instances that were started before the given date.
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.includeProcessVariables()
          Include process variables in the process query result
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.involvedUser(String userId)
          Only select the historic process instances with which the user with the given id is involved.
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.orderByProcessDefinitionId()
          Order by the process definition id (needs to be followed by Query.asc() or Query.desc()).
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.orderByProcessInstanceBusinessKey()
          Order by the business key (needs to be followed by Query.asc() or Query.desc()).
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.orderByProcessInstanceDuration()
          Order by the duration of the process instance (needs to be followed by Query.asc() or Query.desc()).
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.orderByProcessInstanceEndTime()
          Order by the end time (needs to be followed by Query.asc() or Query.desc()).
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.orderByProcessInstanceId()
          Order by the process instance id (needs to be followed by Query.asc() or Query.desc()).
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.orderByProcessInstanceStartTime()
          Order by the start time (needs to be followed by Query.asc() or Query.desc()).
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.processDefinitionId(String processDefinitionId)
          Only select historic process instances for the given process definition
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.processDefinitionKey(String processDefinitionKey)
          Only select historic process instances that are defined by a process definition with the given key.
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.processDefinitionKeyNotIn(List<String> processDefinitionKeys)
          Only select historic process instances that don't have a process-definition of which the key is present in the given list
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.processInstanceBusinessKey(String processInstanceBusinessKey)
          Only select historic process instances with the given business key
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.processInstanceId(String processInstanceId)
          Only select historic process instances with the given process instance.
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.processInstanceIds(Set<String> processInstanceIds)
          Only select historic process instances whose id is in the given set of ids.
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.startDateBy(Date date)
          已过时。 will be removed in 5.12, use startedAfter(Date) and startedBefore(Date) instead
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.startDateOn(Date date)
          已过时。 will be removed in 5.12, use startedAfter(Date) and startedBefore(Date) instead
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.startedAfter(Date date)
          Only select historic process instances that were started after the given date.
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.startedBefore(Date date)
          Only select historic process instances that were started before the given date.
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.startedBy(String userId)
          Only select historic process instance that are started by the given user.
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.superProcessInstanceId(String superProcessInstanceId)
          Only select historic process instances started by the given process instance.
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.unfinished()
          Only select historic process instance that are not yet finished.
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.variableValueEquals(Object value)
          Only select process instances which had at least one global variable with the given value when they ended.
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.variableValueEquals(String name, Object value)
          Only select process instances which had a global variable with the given value when they ended.
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.variableValueEqualsIgnoreCase(String name, String value)
          Only select historic process instances which have a local string variable with the given value, case insensitive.
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.variableValueGreaterThan(String name, Object value)
          Only select process instances which had a global variable value greater than the passed value when they ended.
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.variableValueGreaterThanOrEqual(String name, Object value)
          Only select process instances which had a global variable value greater than or equal to the passed value when they ended.
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.variableValueLessThan(String name, Object value)
          Only select process instances which had a global variable value less than the passed value when the ended.
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.variableValueLessThanOrEqual(String name, Object value)
          Only select process instances which has a global variable value less than or equal to the passed value when they ended.
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.variableValueLike(String name, String value)
          Only select process instances which had global variable value like the given value when they ended.
 HistoricProcessInstanceQuery HistoricProcessInstanceQuery.variableValueNotEquals(String name, Object value)
          Only select process instances which had a global variable with the given name, but with a different value than the passed value when they ended.
 

org.activiti.engine.implHistoricProcessInstanceQuery 的使用
 

实现 HistoricProcessInstanceQueryorg.activiti.engine.impl 中的类
 class HistoricProcessInstanceQueryImpl
           
 

返回 HistoricProcessInstanceQueryorg.activiti.engine.impl 中的方法
 HistoricProcessInstanceQuery HistoryServiceImpl.createHistoricProcessInstanceQuery()
           
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.excludeSubprocesses(boolean excludeSubprocesses)
           
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.finishDateBy(Date date)
          已过时。 
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.finishDateOn(Date date)
          已过时。 
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.finished()
           
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.finishedAfter(Date date)
           
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.finishedBefore(Date date)
           
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.includeProcessVariables()
           
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.involvedUser(String userId)
           
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.orderByProcessDefinitionId()
           
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.orderByProcessInstanceBusinessKey()
           
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.orderByProcessInstanceDuration()
           
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.orderByProcessInstanceEndTime()
           
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.orderByProcessInstanceId()
           
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.orderByProcessInstanceStartTime()
           
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.processDefinitionKey(String processDefinitionKey)
           
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.processDefinitionKeyNotIn(List<String> processDefinitionKeys)
           
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.processInstanceBusinessKey(String businessKey)
           
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.processInstanceIds(Set<String> processInstanceIds)
           
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.startDateBy(Date date)
          已过时。 
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.startDateOn(Date date)
          已过时。 
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.startedAfter(Date date)
           
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.startedBefore(Date date)
           
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.startedBy(String userId)
           
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.superProcessInstanceId(String superProcessInstanceId)
           
 HistoricProcessInstanceQuery HistoricProcessInstanceQueryImpl.unfinished()
           
 



Copyright © 2013 Alfresco. All rights reserved.