public class LiteralExpression extends Object implements Expression
Constructor and Description |
---|
LiteralExpression(String literalValue) |
Modifier and Type | Method and Description |
---|---|
String |
getExpressionString()
Return the original string used to create this expression (unmodified).
|
String |
getValue()
Evaluate this expression in the default standard context.
|
<T> T |
getValue(Class<T> expectedResultType)
Evaluate the expression in the default context.
|
String |
getValue(EvaluationContext context)
Evaluate this expression in the provided context and return the result
of evaluation.
|
<T> T |
getValue(EvaluationContext context,
Class<T> expectedResultType)
Evaluate the expression in a specified context which can resolve references
to properties, methods, types, etc.
|
String |
getValue(EvaluationContext context,
Object rootObject)
Evaluate this expression in the provided context and return the result
of evaluation, but use the supplied root context as an override for any
default root object specified in the context.
|
<T> T |
getValue(EvaluationContext context,
Object rootObject,
Class<T> desiredResultType)
Evaluate the expression in a specified context which can resolve references
to properties, methods, types, etc.
|
String |
getValue(Object rootObject)
Evaluate this expression against the specified root object.
|
<T> T |
getValue(Object rootObject,
Class<T> desiredResultType)
Evaluate the expression in the default context against the specified root
object.
|
Class<?> |
getValueType()
Return the most general type that can be passed to a
Expression.setValue(java.lang.Object, java.lang.Object)
method using the default context. |
Class<?> |
getValueType(EvaluationContext context)
Return the most general type that can be passed to the
Expression.setValue(EvaluationContext, Object) method for the given context. |
Class<?> |
getValueType(EvaluationContext context,
Object rootObject)
Return the most general type that can be passed to the
Expression.setValue(EvaluationContext, Object, Object) method for the given
context. |
Class<?> |
getValueType(Object rootObject)
Return the most general type that can be passed to the
Expression.setValue(Object, Object) method using the default context. |
TypeDescriptor |
getValueTypeDescriptor()
Return the most general type that can be passed to a
Expression.setValue(java.lang.Object, java.lang.Object)
method using the default context. |
TypeDescriptor |
getValueTypeDescriptor(EvaluationContext context)
Return the most general type that can be passed to the
Expression.setValue(EvaluationContext, Object) method for the given context. |
TypeDescriptor |
getValueTypeDescriptor(EvaluationContext context,
Object rootObject)
Return the most general type that can be passed to the
Expression.setValue(EvaluationContext, Object, Object) method for the given
context. |
TypeDescriptor |
getValueTypeDescriptor(Object rootObject)
Return the most general type that can be passed to the
Expression.setValue(Object, Object) method using the default context. |
boolean |
isWritable(EvaluationContext context)
Determine if an expression can be written to, i.e.
|
boolean |
isWritable(EvaluationContext context,
Object rootObject)
Determine if an expression can be written to, i.e.
|
boolean |
isWritable(Object rootObject)
Determine if an expression can be written to, i.e.
|
void |
setValue(EvaluationContext context,
Object value)
Set this expression in the provided context to the value provided.
|
void |
setValue(EvaluationContext context,
Object rootObject,
Object value)
Set this expression in the provided context to the value provided.
|
void |
setValue(Object rootObject,
Object value)
Set this expression in the provided context to the value provided.
|
public LiteralExpression(String literalValue)
public final String getExpressionString()
Expression
getExpressionString
in interface Expression
public Class<?> getValueType(EvaluationContext context)
Expression
Expression.setValue(EvaluationContext, Object)
method for the given context.getValueType
in interface Expression
context
- the context in which to evaluate the expressionpublic String getValue()
Expression
getValue
in interface Expression
@Nullable public <T> T getValue(@Nullable Class<T> expectedResultType) throws EvaluationException
Expression
getValue
in interface Expression
expectedResultType
- the class the caller would like the result to beEvaluationException
- if there is a problem during evaluationpublic String getValue(@Nullable Object rootObject)
Expression
getValue
in interface Expression
rootObject
- the root object against which to evaluate the expression@Nullable public <T> T getValue(@Nullable Object rootObject, @Nullable Class<T> desiredResultType) throws EvaluationException
Expression
getValue
in interface Expression
rootObject
- the root object against which to evaluate the expressiondesiredResultType
- the class the caller would like the result to beEvaluationException
- if there is a problem during evaluationpublic String getValue(EvaluationContext context)
Expression
getValue
in interface Expression
context
- the context in which to evaluate the expression@Nullable public <T> T getValue(EvaluationContext context, @Nullable Class<T> expectedResultType) throws EvaluationException
Expression
getValue
in interface Expression
context
- the context in which to evaluate the expressionexpectedResultType
- the class the caller would like the result to beEvaluationException
- if there is a problem during evaluationpublic String getValue(EvaluationContext context, @Nullable Object rootObject) throws EvaluationException
Expression
getValue
in interface Expression
context
- the context in which to evaluate the expressionrootObject
- the root object against which to evaluate the expressionEvaluationException
- if there is a problem during evaluation@Nullable public <T> T getValue(EvaluationContext context, @Nullable Object rootObject, @Nullable Class<T> desiredResultType) throws EvaluationException
Expression
getValue
in interface Expression
context
- the context in which to evaluate the expressionrootObject
- the root object against which to evaluate the expressiondesiredResultType
- the class the caller would like the result to beEvaluationException
- if there is a problem during evaluationpublic Class<?> getValueType()
Expression
Expression.setValue(java.lang.Object, java.lang.Object)
method using the default context.getValueType
in interface Expression
public Class<?> getValueType(@Nullable Object rootObject) throws EvaluationException
Expression
Expression.setValue(Object, Object)
method using the default context.getValueType
in interface Expression
rootObject
- the root object against which to evaluate the expressionEvaluationException
- if there is a problem determining the typepublic Class<?> getValueType(EvaluationContext context, @Nullable Object rootObject) throws EvaluationException
Expression
Expression.setValue(EvaluationContext, Object, Object)
method for the given
context. The supplied root object overrides any specified in the context.getValueType
in interface Expression
context
- the context in which to evaluate the expressionrootObject
- the root object against which to evaluate the expressionEvaluationException
- if there is a problem determining the typepublic TypeDescriptor getValueTypeDescriptor()
Expression
Expression.setValue(java.lang.Object, java.lang.Object)
method using the default context.getValueTypeDescriptor
in interface Expression
public TypeDescriptor getValueTypeDescriptor(@Nullable Object rootObject) throws EvaluationException
Expression
Expression.setValue(Object, Object)
method using the default context.getValueTypeDescriptor
in interface Expression
rootObject
- the root object against which to evaluate the expressionEvaluationException
- if there is a problem determining the typepublic TypeDescriptor getValueTypeDescriptor(EvaluationContext context)
Expression
Expression.setValue(EvaluationContext, Object)
method for the given context.getValueTypeDescriptor
in interface Expression
context
- the context in which to evaluate the expressionpublic TypeDescriptor getValueTypeDescriptor(EvaluationContext context, @Nullable Object rootObject) throws EvaluationException
Expression
Expression.setValue(EvaluationContext, Object, Object)
method for the given
context. The supplied root object overrides any specified in the context.getValueTypeDescriptor
in interface Expression
context
- the context in which to evaluate the expressionrootObject
- the root object against which to evaluate the expressionEvaluationException
- if there is a problem determining the typepublic boolean isWritable(@Nullable Object rootObject) throws EvaluationException
Expression
isWritable
in interface Expression
rootObject
- the root object against which to evaluate the expressiontrue
if the expression is writable; false
otherwiseEvaluationException
- if there is a problem determining if it is writablepublic boolean isWritable(EvaluationContext context)
Expression
isWritable
in interface Expression
context
- the context in which the expression should be checkedtrue
if the expression is writable; false
otherwisepublic boolean isWritable(EvaluationContext context, @Nullable Object rootObject) throws EvaluationException
Expression
isWritable
in interface Expression
context
- the context in which the expression should be checkedrootObject
- the root object against which to evaluate the expressiontrue
if the expression is writable; false
otherwiseEvaluationException
- if there is a problem determining if it is writablepublic void setValue(@Nullable Object rootObject, @Nullable Object value) throws EvaluationException
Expression
setValue
in interface Expression
rootObject
- the root object against which to evaluate the expressionvalue
- the new valueEvaluationException
- if there is a problem during evaluationpublic void setValue(EvaluationContext context, @Nullable Object value) throws EvaluationException
Expression
setValue
in interface Expression
context
- the context in which to set the value of the expressionvalue
- the new valueEvaluationException
- if there is a problem during evaluationpublic void setValue(EvaluationContext context, @Nullable Object rootObject, @Nullable Object value) throws EvaluationException
Expression
setValue
in interface Expression
context
- the context in which to set the value of the expressionrootObject
- the root object against which to evaluate the expressionvalue
- the new valueEvaluationException
- if there is a problem during evaluation