Class ReadonlyContext
java.lang.Object
org.apache.commons.jexl2.ReadonlyContext
- All Implemented Interfaces:
JexlContext
A readonly context wrapper.
- Since:
- 2.1
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of a variable.booleanChecks whether a variable is defined in this context.voidWill throw an UnsupportedOperationException when called; the JexlEngine deals with it appropriately.
-
Constructor Details
-
ReadonlyContext
Creates a new readonly context.- Parameters:
context- the wrapped context
-
-
Method Details
-
get
Gets the value of a variable.- Specified by:
getin interfaceJexlContext- Parameters:
name- the variable's name- Returns:
- the value
-
set
Will throw an UnsupportedOperationException when called; the JexlEngine deals with it appropriately.- Specified by:
setin interfaceJexlContext- Parameters:
name- the unused variable namevalue- the unused variable value
-
has
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:
hasin interfaceJexlContext- Parameters:
name- the variable's name- Returns:
- true if it exists, false otherwise
-