public class ArrayResolverExpr extends Expr
a[b]
Constructor and Description |
---|
ArrayResolverExpr(Expr left,
Expr right)
Creates a new array expression.
|
Modifier and Type | Method and Description |
---|---|
Expr |
createMethod(Expr[] args)
Creates a method for constant arrays.
|
boolean |
equals(java.lang.Object o)
Returns true for equal strings.
|
Expr |
getExpr()
Returns the base expression.
|
Expr |
getIndex()
Returns the index expression.
|
MethodInfo |
getMethodInfo(ELContext env,
java.lang.Class<?> returnType,
java.lang.Class<?>[] argTypes)
Evaluates the expression, returning an object.
|
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)
Returns the read-only value of the expression.
|
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, 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 Expr getExpr()
public Expr getIndex()
public Expr createMethod(Expr[] args)
createMethod
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<?> returnType, 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)