public class PathExpr extends Expr
Constructor and Description |
---|
PathExpr(Expr expr,
java.lang.String path)
Creates a new path expression.
|
Modifier and Type | Method and Description |
---|---|
Expr |
createField(java.lang.String field)
Creates a field reference using this expression as the base object.
|
Expr |
createMethod(Expr[] args)
Creates a method call using this as the
obj.method
expression |
boolean |
equals(java.lang.Object o)
Returns true for equal strings.
|
MethodInfo |
getMethodInfo(ELContext env,
java.lang.Class<?> retType,
java.lang.Class<?>[] argTypes)
Returns the method info.
|
java.lang.Class<?> |
getType(ELContext env)
Evaluates the expression as applicable to the provided context,
and returns the most general type that can be accepted by the
setValue(javax.el.ELContext, java.lang.Object) method.
|
java.lang.Object |
getValue(ELContext env)
Evaluate the expression as an object.
|
ValueReference |
getValueReference(ELContext context) |
java.lang.Object |
invoke(ELContext env,
java.lang.Class<?>[] argTypes,
java.lang.Object[] args)
Evaluates the expression, returning an object.
|
boolean |
isReadOnly(ELContext env)
Evaluate the expression as an object.
|
void |
printCreate(WriteStream os)
Prints the code to create an LongLiteral.
|
void |
setValue(ELContext env,
java.lang.Object value)
Evaluate the expression as an object.
|
java.lang.String |
toString()
Returns a readable representation of the expr.
|
coerceToType, createField, error, evalBigDecimal, evalBigInteger, evalBoolean, evalCharacter, evalDouble, evalLong, evalObject, evalPeriod, evalString, evalStringWithNull, getExpectedType, getExpressionString, hashCode, invocationError, isConstant, isDouble, isDoubleString, isLiteralText, print, print, printEscaped, printEscapedString, setProperty, toBigDecimal, toBigInteger, toBoolean, toCharacter, toClass, toDouble, toEnum, toLong, toStream, toStream, toStream, toStreamEscaped, toStreamEscaped, toStreamEscaped, toString, toString, toString, toString, toString, toStringWithNull
public PathExpr(Expr expr, java.lang.String path)
expr
- the underlying expressionpath
- the property name to use if nullpublic Expr createField(java.lang.String field)
createField
in class Expr
field
- the string reference for the field.public Expr createMethod(Expr[] args)
obj.method
expressioncreateMethod
in class Expr
args
- the arguments for the methodpublic java.lang.Class<?> getType(ELContext env) throws PropertyNotFoundException, ELException
getType
in class Expr
env
- PropertyNotFoundException
ELException
public java.lang.Object getValue(ELContext env) throws ELException
getValue
in class Expr
env
- the variable environmentELException
public boolean isReadOnly(ELContext env) throws ELException
isReadOnly
in class Expr
env
- the variable environmentELException
public void setValue(ELContext env, java.lang.Object value) throws ELException
setValue
in class Expr
env
- the variable environmentELException
public ValueReference getValueReference(ELContext context)
getValueReference
in class ValueExpression
public MethodInfo getMethodInfo(ELContext env, java.lang.Class<?> retType, java.lang.Class<?>[] argTypes) throws ELException
getMethodInfo
in class Expr
env
- the variable environmentELException
public java.lang.Object invoke(ELContext env, java.lang.Class<?>[] argTypes, java.lang.Object[] args) throws ELException
invoke
in class Expr
env
- the variable environmentELException
public void printCreate(WriteStream os) throws java.io.IOException
printCreate
in class Expr
os
- stream to the generated *.java codejava.io.IOException
public boolean equals(java.lang.Object o)