类 OperatorInstanceof

所有已实现的接口:
Opcodes, SpelNode

public class OperatorInstanceof extends Operator
The operator 'instanceof' checks if an object is of the class specified in the right hand operand, in the same way that instanceof does in Java.
从以下版本开始:
4.0
作者:
Andy Clement
  • 字段详细资料

  • 构造器详细资料

    • OperatorInstanceof

      public OperatorInstanceof(int startPos, int endPos, SpelNodeImpl... operands)
  • 方法详细资料

    • getValueInternal

      public BooleanTypedValue getValueInternal(ExpressionState state) throws EvaluationException
      Compare the left operand to see it is an instance of the type specified as the right operand. The right operand must be a class.
      指定者:
      getValueInternal 在类中 SpelNodeImpl
      参数:
      state - the expression state
      返回:
      true if the left operand is an instanceof of the right operand, otherwise false
      抛出:
      EvaluationException - if there is a problem evaluating the expression
    • 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