Package ognl

Interface NodeType

All Known Implementing Classes:
ASTAnd, ASTChain, ASTConst, ASTInstanceof, ASTList, ASTMethod, ASTOr, ASTProperty, ASTRootVarRef, ASTSequence, ASTStaticField, ASTStaticMethod, ASTThisVarRef, ASTVarRef, BooleanExpression, ComparisonExpression, NumericExpression

public interface NodeType
Used by some of the OgnlExpressionCompiler logic to determine the object type of Nodes during expression evaluation.
  • Method Summary

    Modifier and Type
    Method
    Description
    The type returned from the expression - if any.
    The type used to set the value - if any.
  • Method Details

    • getGetterClass

      Class getGetterClass()
      The type returned from the expression - if any.
      Returns:
      The type.
    • getSetterClass

      Class getSetterClass()
      The type used to set the value - if any.
      Returns:
      The type.