Is there a way to use the Java instanceof operator in Thymeleaf?
instanceof
Something like:
Try:
<span th:if="${animal.class.name == 'my.project.Cat'}" th:text="A cat"></span>
or, if using Spring:
<span th:if="${animal instanceof T(my.project.Cat)}" th:text="A cat"></span>
more about using SpEL and dialects in thymeleaf.