类 Indexer

java.lang.Object
cn.taketoday.expression.spel.ast.SpelNodeImpl
cn.taketoday.expression.spel.ast.Indexer
所有已实现的接口:
Opcodes, SpelNode

public class Indexer extends SpelNodeImpl
An Indexer can index into some proceeding structure to access a particular piece of it. Supported structures are: strings / collections (lists/sets) / arrays.
从以下版本开始:
4.0
作者:
Andy Clement, Phillip Webb, Stephane Nicoll, Sam Brannen
  • 构造器详细资料

    • Indexer

      public Indexer(int startPos, int endPos, SpelNodeImpl expr)
  • 方法详细资料

    • getValueInternal

      public TypedValue getValueInternal(ExpressionState state) throws EvaluationException
      指定者:
      getValueInternal 在类中 SpelNodeImpl
      抛出:
      EvaluationException
    • setValue

      public void setValue(ExpressionState state, @Nullable Object newValue) throws EvaluationException
      从接口复制的说明: SpelNode
      Evaluate the expression to a node and then set the new value on that node. For example, if the expression evaluates to a property reference, then the property will be set to the new value.
      指定者:
      setValue 在接口中 SpelNode
      覆盖:
      setValue 在类中 SpelNodeImpl
      参数:
      state - the current expression state (includes the context)
      newValue - the new value
      抛出:
      EvaluationException - if any problem occurs evaluating the expression or setting the new value
    • isWritable

      public boolean isWritable(ExpressionState expressionState) throws SpelEvaluationException
      从接口复制的说明: SpelNode
      Determine if this expression node will support a setValue() call.
      指定者:
      isWritable 在接口中 SpelNode
      覆盖:
      isWritable 在类中 SpelNodeImpl
      参数:
      expressionState - the current expression state (includes the context)
      返回:
      true if the expression node will allow setValue()
      抛出:
      SpelEvaluationException
    • getValueRef

      protected ValueRef getValueRef(ExpressionState state) throws EvaluationException
      覆盖:
      getValueRef 在类中 SpelNodeImpl
      抛出:
      EvaluationException
    • isCompilable

      public boolean isCompilable()
      从类复制的说明: SpelNodeImpl
      Check whether a 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.
      覆盖:
      isCompilable 在类中 SpelNodeImpl
      返回:
      true if this node can be compiled to bytecode
    • generateCode

      public void generateCode(MethodVisitor mv, CodeFlow cf)
      从类复制的说明: SpelNodeImpl
      Generate the bytecode for this node into the supplied visitor. Context info about the current expression being compiled is available in the codeflow object, e.g. including information about the type of the object currently on the stack.
      覆盖:
      generateCode 在类中 SpelNodeImpl
      参数:
      mv - the ASM MethodVisitor into which code should be generated
      cf - a context object with info about what is on the stack
    • toStringAST

      public String toStringAST()
      从接口复制的说明: SpelNode
      Return the string form the this AST node.
      返回:
      the string form