Uses of Interface
org.springframework.asm.Opcodes
Package
Description
Spring's repackaging of the
CGLIB core package
(for internal use only).
Expression parsing support within a Spring application context.
SpEL's central implementation package.
SpEL's abstract syntax tree.
SpEL's standard parser implementation.
SpEL's default implementations for various core abstractions.
-
Uses of Opcodes in org.springframework.cglib.core
-
Uses of Opcodes in org.springframework.context.expression
Modifier and TypeClassDescriptionclass
SpELPropertyAccessor
that knows how to access the keys of a standardMap
. -
Uses of Opcodes in org.springframework.expression.spel
Modifier and TypeInterfaceDescriptioninterface
A compilableIndexAccessor
is able to generate bytecode that represents the operation for reading the index, facilitating compilation to bytecode of expressions that use the accessor.interface
A compilablePropertyAccessor
is able to generate bytecode that represents the access operation, facilitating compilation to bytecode of expressions that use the accessor.Modifier and TypeClassDescriptionclass
Manages the class being generated by the compilation process. -
Uses of Opcodes in org.springframework.expression.spel.ast
Modifier and TypeClassDescriptionclass
Represents assignment.class
Represents a reference to a bean, for example@orderService
or@'order.service'
.class
Represents the literal valuesTRUE
andFALSE
.class
Represents a DOT separated expression sequence, such asproperty1.property2.methodOne()
orproperty1?.property2?.methodOne()
when the null-safe navigation operator is used.class
Represents the invocation of a constructor: either a constructor on a regular type or construction of an array.class
Represents the Elvis operator?:
.class
Expression language AST node that represents a float literal.class
A function reference is of the form "#someFunction(a,b,c)".class
An 'identifier'SpelNode
.class
AnIndexer
can index into some proceeding structure to access a particular element of the structure.class
Represent a list in an expression, for example, '{1,2,3}'.class
Represent a map in an expression, for example, '{name:'foo',age:12}'.class
Expression language AST node that represents an integer literal.class
Common superclass for nodes representing literals (boolean, string, number, etc).class
Expression language AST node that represents a long integer literal.class
Expression language AST node that represents a method reference.class
Expression language AST node that represents null.class
Represents the boolean AND operation.class
Decrement operator.class
Implements division operator.class
Implements the equality operator.class
Common supertype for operators that operate on either one or two operands.class
Represents thebetween
operator.class
The operator 'instanceof' checks if an object is of the class specified in the right-hand operand, in the same way thatinstanceof
does in Java.class
Implements the matches operator.class
Represents a NOT operation.class
The power operator.class
Implements greater-than-or-equal operator.class
Implements the greater-than operator.class
Increment operator.class
Implements the less-than-or-equal operator.class
Implements the less-than operator.class
The minus operator supports: subtraction of numbers subtraction of an int from a string of one character (effectively decreasing that character), so'd' - 3 = 'a'
class
Implements the modulus operator.class
Implements themultiply
operator.class
Implements the not-equal operator.class
Represents the boolean OR operation.class
The plus operator will: add numbers concatenate stringsclass
Represents projection, where a given operation is performed on all elements in some input sequence, returning a new sequence of the same size.class
Represents a simple property or field reference.class
Represents a dot separated sequence of strings that indicate a package qualified type reference.class
Expression language AST node that represents a real literal.class
Represents selection over a map or collection.class
The common supertype of all AST nodes in a parsed Spring Expression Language format expression.class
Expression language AST node that represents a string literal.class
Represents a ternary expression, for example: "someCheck()?true:false".class
Represents a reference to a type, for example"T(String)"
or"T(com.example.Foo)"
.class
Represents a variable reference — for example,#root
,#this
,#someVar
, etc. -
Uses of Opcodes in org.springframework.expression.spel.standard
Modifier and TypeClassDescriptionfinal class
A SpelCompiler will take a regular parsed expression and create (and load) a class containing byte code that does the same thing as that expression. -
Uses of Opcodes in org.springframework.expression.spel.support
Modifier and TypeClassDescriptionclass
A flexibleIndexAccessor
that uses reflection to read from and optionally write to an indexed structure of a target object.