类 TemplateAwareExpressionParser.Bracket

java.lang.Object
cn.taketoday.expression.common.TemplateAwareExpressionParser.Bracket
封闭类:
TemplateAwareExpressionParser

private static class TemplateAwareExpressionParser.Bracket extends Object
This captures a type of bracket and the position in which it occurs in the expression. The positional information is used if an error has to be reported because the related end bracket cannot be found. Bracket is used to describe: square brackets [] round brackets () and curly brackets {}
  • 字段详细资料

    • bracket

      char bracket
    • pos

      int pos
  • 构造器详细资料

    • Bracket

      Bracket(char bracket, int pos)
  • 方法详细资料

    • compatibleWithCloseBracket

      boolean compatibleWithCloseBracket(char closeBracket)
    • theOpenBracketFor

      static char theOpenBracketFor(char closeBracket)
    • theCloseBracketFor

      static char theCloseBracketFor(char openBracket)