Java org.springframework.expression Expression fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.expression Expression fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.expression Expression.

The text is from its open source code.

Method

StringgetExpressionString()
Return the original string used to create this expression (unmodified).
ObjectgetValue()
Evaluate this expression in the default standard context.
TgetValue(@Nullable Class desiredResultType)
Evaluate the expression in the default context.
ObjectgetValue(Object rootObject)
Evaluate this expression against the specified root object.
ObjectgetValue(EvaluationContext context)
Evaluate this expression in the provided context and return the result of evaluation.
TgetValue(Object rootObject, @Nullable Class desiredResultType)
Evaluate the expression in the default context against the specified root object.
ObjectgetValue(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.
TgetValue(EvaluationContext context, @Nullable Class desiredResultType)
Evaluate the expression in a specified context which can resolve references to properties, methods, types, etc.
TgetValue(EvaluationContext context, Object rootObject, @Nullable Class desiredResultType)
Evaluate the expression in a specified context which can resolve references to properties, methods, types, etc.
voidsetValue(Object rootObject, @Nullable Object value)
Set this expression in the provided context to the value provided.
voidsetValue(EvaluationContext context, @Nullable Object value)
Set this expression in the provided context to the value provided.
voidsetValue(EvaluationContext context, Object rootObject, @Nullable Object value)
Set this expression in the provided context to the value provided.