类 Elvis

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

public class Elvis extends SpelNodeImpl
Represents the Elvis operator ?:. For an expression a?:b if a is neither null nor an empty String, the value of the expression is a. If a is null or the empty String, then the value of the expression is b.
从以下版本开始:
4.0
作者:
Andy Clement, Juergen Hoeller
  • 构造器详细资料

    • Elvis

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

    • getValueInternal

      public TypedValue getValueInternal(ExpressionState state) throws EvaluationException
      Evaluate the condition and if neither null nor an empty String, return it. If it is null or an empty String, return the other value.
      指定者:
      getValueInternal 在类中 SpelNodeImpl
      参数:
      state - the expression state
      抛出:
      EvaluationException - if the condition does not evaluate correctly to a boolean or there is a problem executing the chosen alternative
    • 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
    • computeExitTypeDescriptor

      private void computeExitTypeDescriptor()