类 TypeReference

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

public class TypeReference extends SpelNodeImpl
Represents a reference to a type, for example "T(String)" or "T(com.somewhere.Foo)".
作者:
Andy Clement
  • 字段详细资料

    • dimensions

      private final int dimensions
    • type

      @Nullable private transient Class<?> type
  • 构造器详细资料

    • TypeReference

      public TypeReference(int startPos, int endPos, SpelNodeImpl qualifiedId)
    • TypeReference

      public TypeReference(int startPos, int endPos, SpelNodeImpl qualifiedId, int dims)
  • 方法详细资料

    • getValueInternal

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

      private Class<?> makeArrayIfNecessary(Class<?> clazz)
    • toStringAST

      public String toStringAST()
      从接口复制的说明: SpelNode
      Return the string form the this AST node.
      返回:
      the string form
    • 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