Can you please let me know, if there is a method to check for an objects value in the process, similar to one below:
processEngine.getTaskService().createTaskQuery().processVariableValueEqualsIgnoreCase('','') The above method will check for the value of the string variable. Is there a method to check for an object like 'Item' ?
No, the variable query only supports primitive types. If you have a complex object and you need to query on a specific value, a good approach would be to store the value as a primitive separately, so you can query on it.