Package | Description |
---|---|
org.springframework.expression.spel.ast |
SpEL's abstract syntax tree.
|
Modifier and Type | Class and Description |
---|---|
class |
BooleanLiteral
Represents the literal values
TRUE and FALSE . |
class |
FloatLiteral
Expression language AST node that represents a float literal.
|
class |
IntLiteral
Expression language AST node that represents an integer literal.
|
class |
LongLiteral
Expression language AST node that represents a long integer literal.
|
class |
NullLiteral
Expression language AST node that represents null.
|
class |
RealLiteral
Expression language AST node that represents a real literal.
|
class |
StringLiteral
Expression language AST node that represents a string literal.
|
Modifier and Type | Method and Description |
---|---|
static Literal |
Literal.getIntLiteral(java.lang.String numberToken,
int pos,
int radix)
Process the string form of a number, using the specified base if supplied
and return an appropriate literal to hold it.
|
static Literal |
Literal.getLongLiteral(java.lang.String numberToken,
int pos,
int radix) |
static Literal |
Literal.getRealLiteral(java.lang.String numberToken,
int pos,
boolean isFloat) |