Interface VariableInstanceQuery

    • Method Detail

      • processInstanceId

        VariableInstanceQuery processInstanceId​(String processInstanceId)
        Only select historic process variables with the given process instance.
      • executionIds

        VariableInstanceQuery executionIds​(Set<String> executionIds)
        Only select historic process variables whose id is in the given set of ids.
      • variableName

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

        VariableInstanceQuery variableNameLike​(String variableNameLike)
        Only select historic process variables where the given variable name is like.
      • excludeTaskVariables

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

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

        VariableInstanceQuery variableValueEquals​(String variableName,
                                                  Object variableValue)
        only select historic process variables with the given name and value
      • variableValueNotEquals

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

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

        VariableInstanceQuery variableValueLikeIgnoreCase​(String variableName,
                                                          String variableValue)
        only select historic process variables like the given name and value (case insensitive)
      • excludeLocalVariables

        VariableInstanceQuery excludeLocalVariables()
        Only select historic process variables which were not set local.