Interface HistoricVariableInstanceQuery

    • Method Detail

      • processInstanceId

        HistoricVariableInstanceQuery processInstanceId​(java.lang.String processInstanceId)
        Only select historic process variables with the given process instance.
      • executionId

        HistoricVariableInstanceQuery executionId​(java.lang.String executionId)
        Only select historic process variables with the given id.
      • executionIds

        HistoricVariableInstanceQuery executionIds​(java.util.Set<java.lang.String> executionIds)
        Only select historic process variables whose id is in the given set of ids.
      • taskIds

        HistoricVariableInstanceQuery taskIds​(java.util.Set<java.lang.String> taskIds)
        Only select historic process variables whose id is in the given set of ids.
      • variableName

        HistoricVariableInstanceQuery variableName​(java.lang.String variableName)
        Only select historic process variables with the given variable name.
      • variableNameLike

        HistoricVariableInstanceQuery variableNameLike​(java.lang.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​(java.lang.String variableName,
                                                          java.lang.Object variableValue)
        only select historic process variables with the given name and value
      • variableValueNotEquals

        HistoricVariableInstanceQuery variableValueNotEquals​(java.lang.String variableName,
                                                             java.lang.Object variableValue)
        only select historic process variables that don't have the given name and value
      • variableValueLike

        HistoricVariableInstanceQuery variableValueLike​(java.lang.String variableName,
                                                        java.lang.String variableValue)
        only select historic process variables like the given name and value
      • variableValueLikeIgnoreCase

        HistoricVariableInstanceQuery variableValueLikeIgnoreCase​(java.lang.String variableName,
                                                                  java.lang.String variableValue)
        only select historic process variables like the given name and value (case insensitive)