org.antlr.v4.tool.Grammar.joinPredicateOperands()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(3.6k)|赞(0)|评价(0)|浏览(127)

本文整理了Java中org.antlr.v4.tool.Grammar.joinPredicateOperands()方法的一些代码示例,展示了Grammar.joinPredicateOperands()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Grammar.joinPredicateOperands()方法的具体详情如下:
包路径:org.antlr.v4.tool.Grammar
类名称:Grammar
方法名:joinPredicateOperands

Grammar.joinPredicateOperands介绍

暂无

代码示例

代码示例来源:origin: org.antlr/antlr4

/** Given an arbitrarily complex SemanticContext, walk the "tree" and get display string.
 *  Pull predicates from grammar text.
 */
public String getSemanticContextDisplayString(SemanticContext semctx) {
  if ( semctx instanceof SemanticContext.Predicate ) {
    return getPredicateDisplayString((SemanticContext.Predicate)semctx);
  }
  if ( semctx instanceof SemanticContext.AND ) {
    SemanticContext.AND and = (SemanticContext.AND)semctx;
    return joinPredicateOperands(and, " and ");
  }
  if ( semctx instanceof SemanticContext.OR ) {
    SemanticContext.OR or = (SemanticContext.OR)semctx;
    return joinPredicateOperands(or, " or ");
  }
  return semctx.toString();
}

代码示例来源:origin: com.tunnelvisionlabs/antlr4

/** Given an arbitrarily complex SemanticContext, walk the "tree" and get display string.
 *  Pull predicates from grammar text.
 */
public String getSemanticContextDisplayString(SemanticContext semctx) {
  if ( semctx instanceof SemanticContext.Predicate ) {
    return getPredicateDisplayString((SemanticContext.Predicate)semctx);
  }
  if ( semctx instanceof SemanticContext.AND ) {
    SemanticContext.AND and = (SemanticContext.AND)semctx;
    return joinPredicateOperands(and, " and ");
  }
  if ( semctx instanceof SemanticContext.OR ) {
    SemanticContext.OR or = (SemanticContext.OR)semctx;
    return joinPredicateOperands(or, " or ");
  }
  return semctx.toString();
}

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

/** Given an arbitrarily complex SemanticContext, walk the "tree" and get display string.
 *  Pull predicates from grammar text.
 */
public String getSemanticContextDisplayString(SemanticContext semctx) {
  if ( semctx instanceof SemanticContext.Predicate ) {
    return getPredicateDisplayString((SemanticContext.Predicate)semctx);
  }
  if ( semctx instanceof SemanticContext.AND ) {
    SemanticContext.AND and = (SemanticContext.AND)semctx;
    return joinPredicateOperands(and, " and ");
  }
  if ( semctx instanceof SemanticContext.OR ) {
    SemanticContext.OR or = (SemanticContext.OR)semctx;
    return joinPredicateOperands(or, " or ");
  }
  return semctx.toString();
}

代码示例来源:origin: uk.co.nichesolutions/antlr4

/** Given an arbitrarily complex SemanticContext, walk the "tree" and get display string.
 *  Pull predicates from grammar text.
 */
public String getSemanticContextDisplayString(SemanticContext semctx) {
  if ( semctx instanceof SemanticContext.Predicate ) {
    return getPredicateDisplayString((SemanticContext.Predicate)semctx);
  }
  if ( semctx instanceof SemanticContext.AND ) {
    SemanticContext.AND and = (SemanticContext.AND)semctx;
    return joinPredicateOperands(and, " and ");
  }
  if ( semctx instanceof SemanticContext.OR ) {
    SemanticContext.OR or = (SemanticContext.OR)semctx;
    return joinPredicateOperands(or, " or ");
  }
  return semctx.toString();
}

代码示例来源:origin: io.virtdata/virtdata-lib-realer

/** Given an arbitrarily complex SemanticContext, walk the "tree" and get display string.
 *  Pull predicates from grammar text.
 */
public String getSemanticContextDisplayString(SemanticContext semctx) {
  if ( semctx instanceof SemanticContext.Predicate ) {
    return getPredicateDisplayString((SemanticContext.Predicate)semctx);
  }
  if ( semctx instanceof SemanticContext.AND ) {
    SemanticContext.AND and = (SemanticContext.AND)semctx;
    return joinPredicateOperands(and, " and ");
  }
  if ( semctx instanceof SemanticContext.OR ) {
    SemanticContext.OR or = (SemanticContext.OR)semctx;
    return joinPredicateOperands(or, " or ");
  }
  return semctx.toString();
}

相关文章