public class ExpressionFragment
extends java.lang.Object
implements java.io.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(java.lang.Object o) |
java.lang.String |
getExpression()
Returns the expression.
|
int |
hashCode() |
static java.util.List<java.lang.Object> |
parse(java.lang.String expr)
Parses an expression into a list of fragments.
|
java.lang.String |
toString() |
public static final java.util.List<java.lang.Object> parse(java.lang.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 java.lang.String getExpression()
public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object o)
equals
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object
Copyright © 2005-2021 Potix Corporation. All Rights Reserved.