Package org.apache.commons.jexl3
Class ObjectContext<T>
java.lang.Object
org.apache.commons.jexl3.ObjectContext<T>
- Type Parameters:
T
- the wrapped object type to use
- All Implemented Interfaces:
JexlContext
,JexlContext.NamespaceResolver
Wraps an Object as a JEXL context and NamespaceResolver.
- Since:
- 3.0
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.commons.jexl3.JexlContext
JexlContext.AnnotationProcessor, JexlContext.CancellationHandle, JexlContext.ClassNameResolver, JexlContext.ModuleProcessor, JexlContext.NamespaceFunctor, JexlContext.NamespaceResolver, JexlContext.OptionsHandle, JexlContext.PragmaProcessor, JexlContext.ThreadLocal
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGets the value of a variable.protected JexlEngine
getJexl()
protected T
boolean
Checks whether a variable is defined in this context.resolveNamespace
(String name) Resolves a namespace by its name.void
Sets the value of a variable.
-
Constructor Details
-
ObjectContext
Creates a new ObjectContext.- Parameters:
engine
- the jexl engine to use to solve propertieswrapped
- the object to wrap in this context
-
-
Method Details
-
get
Description copied from interface:JexlContext
Gets the value of a variable.- Specified by:
get
in interfaceJexlContext
- Parameters:
name
- the variable's name- Returns:
- the value
-
getJexl
- Returns:
- the Jexl engine
-
getObject
- Returns:
- the object exposed by this context
-
has
Description copied from interface:JexlContext
Checks whether a variable is defined in this context.A variable may be defined with a null value; this method checks whether the value is null or if the variable is undefined.
- Specified by:
has
in interfaceJexlContext
- Parameters:
name
- the variable's name- Returns:
- true if it exists, false otherwise
-
resolveNamespace
Description copied from interface:JexlContext.NamespaceResolver
Resolves a namespace by its name.- Specified by:
resolveNamespace
in interfaceJexlContext.NamespaceResolver
- Parameters:
name
- the name- Returns:
- the namespace object
-
set
Description copied from interface:JexlContext
Sets the value of a variable.- Specified by:
set
in interfaceJexlContext
- Parameters:
name
- the variable's namevalue
- the variable's value
-