org.activiti.engine.history
接口 HistoricVariableInstanceQuery

所有超级接口:
Query<HistoricVariableInstanceQuery,HistoricVariableInstance>
所有已知实现类:
HistoricVariableInstanceQueryImpl

public interface HistoricVariableInstanceQuery
extends Query<HistoricVariableInstanceQuery,HistoricVariableInstance>

Programmatic querying for HistoricVariableInstances.

作者:
Christian Lipphardt (camunda)

方法摘要
 HistoricVariableInstanceQuery excludeTaskVariables()
          Only select historic process variables which were not set task-local.
 HistoricVariableInstanceQuery excludeVariableInitialization()
          Don't initialize variable values.
 HistoricVariableInstanceQuery id(String id)
          Only select a historic variable with the given id.
 HistoricVariableInstanceQuery orderByProcessInstanceId()
           
 HistoricVariableInstanceQuery orderByVariableName()
           
 HistoricVariableInstanceQuery processInstanceId(String processInstanceId)
          Only select historic process variables with the given process instance.
 HistoricVariableInstanceQuery taskId(String taskId)
          Only select historic process variables with the given task.
 HistoricVariableInstanceQuery variableName(String variableName)
          Only select historic process variables with the given variable name.
 HistoricVariableInstanceQuery variableNameLike(String variableNameLike)
          Only select historic process variables where the given variable name is like.
 HistoricVariableInstanceQuery variableValueEquals(String variableName, Object variableValue)
          only select historic process variables with the given name and value
 
从接口 org.activiti.engine.query.Query 继承的方法
asc, count, desc, list, listPage, singleResult
 

方法详细信息

id

HistoricVariableInstanceQuery id(String id)
Only select a historic variable with the given id.


processInstanceId

HistoricVariableInstanceQuery processInstanceId(String processInstanceId)
Only select historic process variables with the given process instance.


taskId

HistoricVariableInstanceQuery taskId(String taskId)
Only select historic process variables with the given task.


variableName

HistoricVariableInstanceQuery variableName(String variableName)
Only select historic process variables with the given variable name.


variableNameLike

HistoricVariableInstanceQuery variableNameLike(String variableNameLike)
Only select historic process variables where the given variable name is like.


excludeTaskVariables

HistoricVariableInstanceQuery excludeTaskVariables()
Only select historic process variables which were not set task-local.


excludeVariableInitialization

HistoricVariableInstanceQuery excludeVariableInitialization()
Don't initialize variable values. This is foremost a way to deal with variable delete queries


variableValueEquals

HistoricVariableInstanceQuery variableValueEquals(String variableName,
                                                  Object variableValue)
only select historic process variables with the given name and value


orderByProcessInstanceId

HistoricVariableInstanceQuery orderByProcessInstanceId()

orderByVariableName

HistoricVariableInstanceQuery orderByVariableName()


Copyright © 2013 Alfresco. All rights reserved.