Package org.thymeleaf.expression
Interface IExpressionObjects
-
- All Known Implementing Classes:
ExpressionObjects
public interface IExpressionObjects
Container object for all the expression utility objects to be made available in expressions. The aim of objects implementing this interface is to keep most expression utility objects instanced for the complete execution of a template, always being able to update themselves at any moment in time by means of a reference to the
IExpressionContext
that is using them.- Since:
- 3.0.0
- Author:
- Daniel Fernández
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
containsObject(String name)
Object
getObject(String name)
Set<String>
getObjectNames()
int
size()
-