public class ExpressionFragment extends Object implements Serializable
parse(java.lang.String) is called, a list of fragments is returned.
Each of them is either a Spring instance or a ExpressionFragment
instance.
Available in ZK EE
For example, "ab${x + y}cd${z}" is broken into the following
segments, when parse(java.lang.String) is called:
String("ab"), ExpressionFragment("x+y"), String("cd") and
ExpressionFragment("z").
It is used to implement ExpressionFactory
based on an evaluator that doesn't support the syntax of ${expr}.
The users of XEL expressions rarely needs to use this class.
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object o) |
String |
getExpression()
Returns the expression.
|
int |
hashCode() |
static List<Object> |
parse(String expr)
Parses an expression into a list of fragments.
|
String |
toString() |
public static final List<Object> parse(String expr)
ExpressionFragment
instance.
For example, "ab${x + y}cd${z}" is broken into the following
segments, when parse(java.lang.String) is called:
String("ab"), ExpressionFragment("x+y"), String("cd") and
ExpressionFragment("z").
expr - the expression that may or may not contain one or
multiple ${expr}. It cannot be null.public String getExpression()
Copyright © 2026. All rights reserved.