Package org.thymeleaf.expression
Class ExpressionObjects
- Object
-
- org.thymeleaf.expression.ExpressionObjects
-
- All Implemented Interfaces:
IExpressionObjects
public class ExpressionObjects extends Object implements IExpressionObjects
Base abstract class for
IExpressionObjects
implementations.- Since:
- 3.0.0
- Author:
- Daniel Fernández
-
-
Constructor Summary
Constructors Constructor Description ExpressionObjects(IExpressionContext context, IExpressionObjectFactory expressionObjectFactory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
containsObject(String name)
Object
getObject(String name)
Set<String>
getObjectNames()
int
size()
-
-
-
Constructor Detail
-
ExpressionObjects
public ExpressionObjects(IExpressionContext context, IExpressionObjectFactory expressionObjectFactory)
-
-
Method Detail
-
size
public int size()
- Specified by:
size
in interfaceIExpressionObjects
-
containsObject
public boolean containsObject(String name)
- Specified by:
containsObject
in interfaceIExpressionObjects
-
getObjectNames
public Set<String> getObjectNames()
- Specified by:
getObjectNames
in interfaceIExpressionObjects
-
getObject
public Object getObject(String name)
- Specified by:
getObject
in interfaceIExpressionObjects
-
-