Only select variable instances which have the name like the assigned variable name.
The string can include the wildcard character '%' to express like-strategy:
starts with (string%), ends with (%string) or contains (%string%).
Only select variables instances which have the given name and value. The type
of variable is determined based on the value, using types configured in
ProcessEngineConfigurationImpl.getVariableSerializers().
Byte-arrays and Serializable objects (which are not primitive type wrappers)
are not supported.
Only select variable instances which have the given name, but
with a different value than the passed value.
Byte-arrays and Serializable objects (which are not primitive type wrappers)
are not supported.
Only select variable instances which value is greater than the passed value.
Booleans, Byte-arrays and Serializable objects (which are not primitive type wrappers)
are not supported.
Only select variable instances which value is greater than or equal to
the passed value. Booleans, Byte-arrays and Serializable objects (which
are not primitive type wrappers) are not supported.
Only select variable instances which value is less than the passed value.
Booleans, Byte-arrays and Serializable objects (which are not primitive type wrappers)
are not supported.
Only select variable instances which value is less than or equal to the passed value.
Booleans, Byte-arrays and Serializable objects (which are not primitive type wrappers)
are not supported.
Disable fetching of byte array and file values. By default, the query will fetch such values.
By calling this method you can prevent the values of (potentially large) blob data chunks
to be fetched. The variables themselves are nonetheless included in the query result.
Disable deserialization of variable values that are custom objects. By default, the query
will attempt to deserialize the value of these variables. By calling this method you can
prevent such attempts in environments where their classes are not available.
Independent of this setting, variable serialized values are accessible.
Only select variable instances which value is like the given value.
This be used on string variables only.
Parameters:
name - variable name, cannot be null.
value - variable value, cannot be null. The string can include the
wildcard character '%' to express like-strategy:
starts with (string%), ends with (%string) or contains (%string%).
Order by tenant id (needs to be followed by Query.asc() or Query.desc()).
Note that the ordering of variable instances without tenant id is database-specific.