Class InlineList

java.lang.Object
org.springframework.expression.spel.ast.SpelNodeImpl
org.springframework.expression.spel.ast.InlineList
All Implemented Interfaces:
Opcodes, SpelNode

public class InlineList extends SpelNodeImpl
Represent a list in an expression, for example, '{1,2,3}'.
Since:
3.0.4
Author:
Andy Clement, Sam Brannen, Harry Yang, Semyon Danilov
  • Constructor Details

    • InlineList

      public InlineList(int startPos, int endPos, SpelNodeImpl... args)
  • Method Details

    • getValueInternal

      public TypedValue getValueInternal(ExpressionState expressionState) throws EvaluationException
      Specified by:
      getValueInternal in class SpelNodeImpl
      Throws:
      EvaluationException
    • toStringAST

      public String toStringAST()
      Description copied from interface: SpelNode
      Return the string form of this AST node.
      Returns:
      the string form
    • isConstant

      public boolean isConstant()
      Return whether this list is structurally a constant value.

      Note that the resulting constant value is created lazily on the first call to getValueInternal(ExpressionState) or getConstantValue().

    • getConstantValue

      @Deprecated(since="6.2.19") public @Nullable List<Object> getConstantValue()
      Deprecated.
      as of Spring Framework 6.2.19; this method was only intended for testing purposes and will be removed in a future version of the framework
      Return the cached constant List value for this inline list, lazily creating it on first access.
      See Also:
    • isCompilable

      public boolean isCompilable()
      Description copied from interface: SpelNode
      Determine if this node can be compiled to bytecode.

      The reasoning in each node may be different but will typically involve checking whether the exit type descriptor of the node is known and any relevant child nodes are compilable.

      The default implementation returns false.

      If you override this method, you must also override SpelNode.generateCode(MethodVisitor, CodeFlow).

      Returns:
      true if this node can be compiled to bytecode
      See Also:
    • generateCode

      public void generateCode(MethodVisitor mv, CodeFlow codeflow)
      Description copied from interface: SpelNode
      Generate the bytecode for this node into the supplied MethodVisitor.

      Context information about the current expression being compiled is available in the supplied CodeFlow object — for example, information about the type of the object currently on the stack.

      This method will not be invoked unless SpelNode.isCompilable() returns true.

      The default implementation throws an IllegalStateException since SpelNode.isCompilable() returns false by default.

      If you override this method, you must also override SpelNode.isCompilable().

      Parameters:
      mv - the ASM MethodVisitor into which code should be generated
      codeflow - a context object with information about what is on the stack
      See Also: