There is no instanceof, but you can get class name as a string and then go from there:
${myObj.class.name} would return "com.test.MyObj"
${myObj.class.simpleName} would return "MyObj"
There is no instanceof, but you can get class name as a string and then go from there:
${myObj.class.name} would return "com.test.MyObj"
${myObj.class.simpleName} would return "MyObj"