gpt4 book ai didi

org.opendaylight.yangtools.yang.parser.rfc7950.repo.YinTextToDomTransformer.transformSource()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-13 13:22:50 26 4
gpt4 key购买 nike

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

YinTextToDomTransformer.transformSource介绍

暂无

代码示例

代码示例来源:origin: org.opendaylight.yangtools/yang-parser-rfc7950

private YinTextToDomTransformer(final SchemaRepository provider, final SchemaSourceRegistry consumer) {
  super(provider, YinTextSchemaSource.class, consumer, YinDomSchemaSource.class,
    input -> Futures.immediateFuture(transformSource(input)));
}

代码示例来源:origin: org.opendaylight.yangtools/yang-parser-impl

private static StatementStreamSource sourceToStatementStream(final SchemaSourceRepresentation source)
      throws IOException, YangSyntaxErrorException {
    requireNonNull(source);
    if (source instanceof ASTSchemaSource) {
      return YangStatementStreamSource.create((ASTSchemaSource) source);
    } else if (source instanceof YangTextSchemaSource) {
      return YangStatementStreamSource.create((YangTextSchemaSource) source);
    } else if (source instanceof YinDomSchemaSource) {
      return YinStatementStreamSource.create((YinDomSchemaSource) source);
    } else if (source instanceof YinTextSchemaSource) {
      try {
        return YinStatementStreamSource.create(YinTextToDomTransformer.transformSource(
          (YinTextSchemaSource) source));
      } catch (SAXException e) {
        throw new YangSyntaxErrorException(source.getIdentifier(), 0, 0, "Failed to parse XML text", e);
      }
    } else if (source instanceof YinXmlSchemaSource) {
      try {
        return YinStatementStreamSource.create((YinXmlSchemaSource) source);
      } catch (TransformerException e) {
        throw new YangSyntaxErrorException(source.getIdentifier(), 0, 0,
          "Failed to assemble in-memory representation", e);
      }
    } else {
      throw new IllegalArgumentException("Unsupported source " + source);
    }
  }
}

代码示例来源:origin: opendaylight/yangtools

private static StatementStreamSource sourceToStatementStream(final SchemaSourceRepresentation source)
      throws IOException, YangSyntaxErrorException {
    requireNonNull(source);
    if (source instanceof ASTSchemaSource) {
      return YangStatementStreamSource.create((ASTSchemaSource) source);
    } else if (source instanceof YangTextSchemaSource) {
      return YangStatementStreamSource.create((YangTextSchemaSource) source);
    } else if (source instanceof YinDomSchemaSource) {
      return YinStatementStreamSource.create((YinDomSchemaSource) source);
    } else if (source instanceof YinTextSchemaSource) {
      try {
        return YinStatementStreamSource.create(YinTextToDomTransformer.transformSource(
          (YinTextSchemaSource) source));
      } catch (SAXException e) {
        throw new YangSyntaxErrorException(source.getIdentifier(), 0, 0, "Failed to parse XML text", e);
      }
    } else if (source instanceof YinXmlSchemaSource) {
      try {
        return YinStatementStreamSource.create((YinXmlSchemaSource) source);
      } catch (TransformerException e) {
        throw new YangSyntaxErrorException(source.getIdentifier(), 0, 0,
          "Failed to assemble in-memory representation", e);
      }
    } else {
      throw new IllegalArgumentException("Unsupported source " + source);
    }
  }
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com