- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.onosproject.yang.compiler.datamodel.YangDeviation.getCharPosition()
方法的一些代码示例,展示了YangDeviation.getCharPosition()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YangDeviation.getCharPosition()
方法的具体详情如下:
包路径:org.onosproject.yang.compiler.datamodel.YangDeviation
类名称:YangDeviation
方法名:getCharPosition
暂无
代码示例来源:origin: org.onosproject/onos-yang-compiler-datamodel
@Override
public void detectSelfCollision(String identifierName,
YangConstructType dataType)
throws DataModelException {
if (getName().equals(identifierName)) {
throw new DataModelException(
"YANG file error: Duplicate input identifier detected, " +
"same as input \"" +
getName() + " in " +
getLineNumber() + " at " +
getCharPosition() +
" in " + getFileName() + "\"");
}
}
代码示例来源:origin: org.onosproject/onos-yang-compiler-linker
/**
* Returns the cloned node of deviation target node.
*
* @param entityToResolve entity to resolve
* @param root root node
* @param xPathLinker xpath Linker
* @throws DataModelException if there is a data model error
*/
private YangSchemaNode findDeviationTarget(T entityToResolve,
YangReferenceResolver root,
YangXpathLinker<T> xPathLinker)
throws DataModelException {
YangNode targetNode;
YangDeviation deviation = (YangDeviation) entityToResolve;
List<YangAtomicPath> path = deviation.getTargetNode();
targetNode = xPathLinker.processXpathLinking(path, (YangNode) root,
DEVIATION_LINKING);
if (targetNode != null) {
YangNode clonedNode = cloneDeviatedModuleNode(targetNode, deviation);
return xPathLinker.parsePath(clonedNode);
} else {
throw new LinkerException(getErrorMsg(
FAILED_TO_FIND_DEVIATION, deviation.getName(),
deviation.getLineNumber(), deviation.getCharPosition(),
deviation.getFileName()));
}
}
本文整理了Java中org.onosproject.yang.compiler.datamodel.YangDeviation.getCharPosition()方法的一些代码示例,展示了YangDe
本文整理了Java中org.onosproject.yang.compiler.datamodel.YangDeviation.getName()方法的一些代码示例,展示了YangDeviation.
本文整理了Java中org.onosproject.yang.compiler.datamodel.YangDeviation.getTargetNode()方法的一些代码示例,展示了YangDevi
我是一名优秀的程序员,十分优秀!