static Object |
Expressions.from(Object value) |
Compile to expression an Object that may contain some String that needs to be evaluated.
|
static Object |
Expressions.from(Object value,
Bindings initialBindings) |
Compile to expression an Object that may contain some String that needs to be evaluated.
|
static Expression<Object> |
Expressions.from(String value) |
Convert a String to a compiled expression.
|
static Expression<Object> |
Expressions.from(String value,
Bindings initialBindings) |
Convert a String to a compiled expression.
|
static List<Object> |
Expressions.from(List<Object> list) |
Compile as expressions what can be compiled in a list.
|
static List<Object> |
Expressions.from(List<Object> list,
Bindings initialBindings) |
Compile as expressions what can be compiled in a list.
|
static Map<String,Object> |
Expressions.from(Map<String,Object> map) |
Compile a map that may contain some values that needs to be transformed as expression.
|
static Map<String,Object> |
Expressions.from(Map<String,Object> map,
Bindings initialBindings) |
Compile a map that may contain some values that needs to be transformed as expression.
|
static <T> Expression<T> |
Expression.valueOf(String expression,
Class<T> expectedType) |
Factory method to create an Expression.
|
static <T> Expression<T> |
Expression.valueOf(String expression,
Class<T> expectedType,
Bindings initialBindings) |
Factory method to create an Expression.
|
static <T> LeftValueExpression<T> |
LeftValueExpression.valueOf(String expression,
Class<T> expectedType) |
Factory method to create a LeftValueExpression.
|