- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.onosproject.yang.compiler.utils.io.impl.YangIoUtils
类的一些代码示例,展示了YangIoUtils
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YangIoUtils
类的具体详情如下:
包路径:org.onosproject.yang.compiler.utils.io.impl.YangIoUtils
类名称:YangIoUtils
[英]Represents common utility functionalities for code generation.
[中]
代码示例来源:origin: org.onosproject/onos-yang-compiler-utils
/**
* Returns the directory path of the package in canonical form.
*
* @param baseCodeGenPath base path where the generated files needs to be
* put
* @param pathOfJavaPkg java package of the file being generated
* @return absolute path of the package in canonical form
*/
public static String getDirectory(String baseCodeGenPath, String pathOfJavaPkg) {
if (pathOfJavaPkg.charAt(pathOfJavaPkg.length() - 1) == File.separatorChar) {
pathOfJavaPkg = trimAtLast(pathOfJavaPkg, SLASH);
}
String[] strArray = pathOfJavaPkg.split(SLASH);
if (strArray[0].equals(EMPTY_STRING)) {
return pathOfJavaPkg;
} else {
return baseCodeGenPath + SLASH + pathOfJavaPkg;
}
}
代码示例来源:origin: org.onosproject/onos-yang-compiler-utils
/**
* Adds prefix, if the string begins with digit or is a java key word.
*
* @param camelCasePrefix string for adding prefix
* @param conflictResolver object of YANG to java naming conflict util
* @return prefixed camel case string
*/
private static String addPrefix(String camelCasePrefix, YangToJavaNamingConflictUtil conflictResolver) {
String prefix = getPrefixForIdentifier(conflictResolver);
if (camelCasePrefix.matches(REGEX_FOR_FIRST_DIGIT)) {
camelCasePrefix = prefix + camelCasePrefix;
}
if (JAVA_KEY_WORDS.contains(camelCasePrefix)) {
camelCasePrefix = prefix + camelCasePrefix.substring(0, 1).toUpperCase()
+ camelCasePrefix.substring(1);
}
return camelCasePrefix;
}
代码示例来源:origin: org.onosproject/onos-yang-compiler-utils
/**
* Returns javadoc start line.
*
* @param name name of attribute
* @param javaDoc type of javadoc
* @return javadoc start line
*/
private static String getJavaDocStartLine(String name, String javaDoc) {
return FOUR_SPACE_INDENTATION + JAVA_DOC_FIRST_LINE +
FOUR_SPACE_INDENTATION + javaDoc + getSmallCase(name) +
PERIOD + NEW_LINE;
}
代码示例来源:origin: org.onosproject/onos-yang-compiler-utils
if (compilerAnnotation != null) {
compilerAnnotation = compilerAnnotation.toLowerCase();
compilerAnnotation = getCapitalCase(compilerAnnotation);
switch (compilerAnnotation) {
case QUEUE: {
代码示例来源:origin: org.onosproject/onos-yang-compiler-utils
String ruleCheckerWithPrefix = addPrefix(ruleChecker, conflictResolver);
return restrictConsecutiveCapitalCase(ruleCheckerWithPrefix);
代码示例来源:origin: org.onosproject/onos-yang-compiler-utils
/**
* Removes empty directory.
*
* @param path path to be checked
*/
public static void removeEmptyDirectory(String path) {
int index;
while (path != null && !path.isEmpty()) {
if (!removeDirectory(path)) {
break;
} else {
index = path.lastIndexOf(SLASH);
path = path.substring(0, index);
}
}
}
代码示例来源:origin: org.onosproject/onos-yang-compiler-utils
return applyCamelCaseRule(stringArray, conflictResolver);
代码示例来源:origin: org.onosproject/onos-yang-compiler-utils
boolean isChildNode) throws IOException {
pack = parsePkg(pack);
try {
代码示例来源:origin: org.onosproject/onos-yang-compiler-tool
createDirectories(resourceGenDir);
代码示例来源:origin: org.onosproject/onos-yang-compiler-datamodel
if (this instanceof RpcNotificationContainer) {
((RpcNotificationContainer) this).addToIdentityTypedefMap(
YangIoUtils.getCamelCase(newChild.getName(), null), newChild);
代码示例来源:origin: org.onosproject/onos-yang-runtime-uils
/**
* Returns schema node's generated interface class name.
*
* @param schemaNode schema node
* @return schema node's generated interface class name
*/
public static String getInterfaceClassName(YangSchemaNode schemaNode) {
return schemaNode.getJavaPackage() + PERIOD +
getCapitalCase(schemaNode.getJavaClassNameOrBuiltInType());
}
代码示例来源:origin: org.onosproject/onos-yang-compiler-utils
/**
* Returns javaDocs for add to list method.
*
* @param attribute attribute
* @param annotation compile annotation
* @return javaDocs
*/
private static String generateForAddToList(String attribute, String annotation) {
StringBuilder javadoc = new StringBuilder();
javadoc.append(getJavaDocStartLine(attribute, JAVA_DOC_ADD_TO_LIST))
.append(getJavaDocEmptyAsteriskLine());
if (annotation != null) {
annotation = annotation.toLowerCase();
annotation = getCapitalCase(annotation);
switch (annotation) {
case MAP:
javadoc.append(getJavaDocParamLine(
attribute, attribute + KEYS)).append(getJavaDocParamLine(
attribute, attribute + VALUE_CAPS));
break;
default:
javadoc.append(getJavaDocParamLine(
attribute, ADD_STRING + TO_CAPS));
break;
}
}
javadoc.append(getJavaDocParamLine(attribute, ADD_STRING + TO_CAPS))
.append(getJavaDocEndLine());
return javadoc.toString();
}
代码示例来源:origin: org.onosproject/onos-yang-compiler-utils
/**
* Returns javadoc return line.
*
* @param name name of attribute
* @return javadoc return line
*/
private static String getJavaDocReturnLine(String name) {
return FOUR_SPACE_INDENTATION + JAVA_DOC_RETURN + getSmallCase(name)
+ NEW_LINE;
}
代码示例来源:origin: org.onosproject/onos-yang-serializers-utils
/**
* Converts a resource identifier to URI string.
*
* @param rid resource identifier
* @param context YANG serializer context
* @return URI
*/
public static String convertRidToUri(ResourceId rid,
YangSerializerContext context) {
if (rid == null) {
return null;
}
StringBuilder uriBuilder = new StringBuilder();
List<NodeKey> nodeKeyList = rid.nodeKeys();
String curNameSpace = null;
for (NodeKey key : nodeKeyList) {
curNameSpace = addNodeKeyToUri(key, curNameSpace, uriBuilder, context);
}
return trimAtLast(uriBuilder.toString(), SLASH);
}
代码示例来源:origin: org.onosproject/onos-yang-compiler-utils
/**
* Returns javadoc param line.
*
* @param name name of attribute
* @return javadoc param line
*/
private static String getJavaDocParamLine(String name, String paraName) {
return FOUR_SPACE_INDENTATION + JAVA_DOC_PARAM +
getSmallCase(paraName) + SPACE + VALUE + SPACE + OF + SPACE +
getSmallCase(name) + NEW_LINE;
}
代码示例来源:origin: org.onosproject/onos-yang-compiler-utils
/**
* Returns class javadoc.
*
* @param name name of class
* @param type type of javadoc
* @param indent indentation
* @return class javadoc
*/
private static String getJavaDocForClass(String name, String type,
String indent) {
return NEW_LINE + indent + JAVA_DOC_FIRST_LINE + indent + type +
getSmallCase(name) + PERIOD + NEW_LINE + indent + JAVA_DOC_END_LINE;
}
代码示例来源:origin: org.onosproject/onos-yang-compiler-utils
/**
* Returns class javadoc.
*
* @param name name of class
* @param type type of javadoc
* @param indent indentation
* @param isForDefaultClass if javadoc is generated for default class
* @return class javadoc
*/
private static String getJavaDocForDefaultClass(String name, String type,
String indent, boolean isForDefaultClass) {
String append = addFlagJavaDoc();
if (!isForDefaultClass) {
append = EMPTY_STRING;
}
return NEW_LINE + indent + JAVA_DOC_FIRST_LINE + indent + type +
getSmallCase(name) + PERIOD + NEW_LINE + indent + append +
JAVA_DOC_END_LINE;
}
代码示例来源:origin: org.onosproject/onos-yang-compiler-utils
/**
* Generates javaDocs for rpc method.
*
* @param rpcName name of the rpc
* @param inputName name of input
* @param outputName name of output
* @return javaDocs of rpc method
*/
public static String generateJavaDocForRpc(String rpcName, String inputName,
String outputName) {
String javadoc = getJavaDocStartLine(rpcName, JAVA_DOC_RPC) +
getJavaDocEmptyAsteriskLine();
if (!inputName.equals(EMPTY_STRING)) {
javadoc = javadoc + getInputString(inputName, rpcName);
}
if (!outputName.equals(VOID)) {
javadoc = javadoc + getOutputString(getSmallCase(outputName),
rpcName);
}
return javadoc + getJavaDocEndLine();
}
代码示例来源:origin: org.onosproject/onos-yang-compiler-utils
/**
* Generates javaDocs for type constructor.
*
* @param attribute attribute string
* @return javaDocs for type constructor
*/
public static String generateForGetMethodWithAttribute(String attribute) {
attribute = getSmallCase(attribute);
return getJavaDocStartLine(attribute, JAVA_DOC_GETTERS) +
getJavaDocEmptyAsteriskLine() +
getJavaDocParamLine(attribute, attribute) +
getJavaDocReturnLine(attribute) +
getJavaDocEndLine();
}
代码示例来源:origin: org.onosproject/onos-yang-compiler-utils
String compilerAnnotation) {
name = getSmallCase(name);
switch (type) {
case DEFAULT_CLASS: {
我在运行 compile test:compile it:compile经常并且...希望将击键次数减少到类似 *:compile 的数量。 .不过,它似乎不起作用。 $ sbt *:compile
有人可以给我这个问题的提示(或整个解决方案!): 在 Clojurescript 项目中,如何自动将编译日期/时间硬编码在符号中,以便在使用应用程序时显示? 谢谢。 最佳答案 有多种解决方案: 使用l
我是 ember.js 框架的新手,使用 ruby on rails 和 ember.debug.js -v 1.10.1(最新版本)。我一直在网上看到 ember 更改了这个最新的补丁,但我不知
我不是 Fortran 程序员(只是短暂的经验),但我需要编译一个部分用 F77 编写的程序。在我之前有人用 Absoft 编译器编译过它,但现在我需要在另一台机器上用 g77 重复这个过程。对于 A
我运行命令 mvn clean package 我得到了上面的错误我的 pom 是: http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0
我有以下问题。 我想在测试编译阶段排除一些.java文件(** / jsfunit / *。java),另一方面,我想在编译阶段包括它们(id我使用tomcat启动tomcat:运行目标) ) 我的p
符合 wikipedia A compiler is a computer program (or set of programs) that transforms source code writt
我想构建项目,但出现如下错误: 无法执行目标 org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile
当我通过右键单击项目名称进行 Maven 安装时,出现以下错误: [INFO] Scanning for projects... [WARNING] [WARNING] Some proble
我是 Maven 的新手,我想将我的应用程序导入到 Maven。和以前一样,我想将我的 ejb 项目中的类引用到我的 war 项目中。我在类中没有错误,但是如果我在我的父项目上安装 maven,那么我
当我将 ASP.NET Web 应用程序部署到生产环境时,我使用配置转换来删除 debug="true"来自 .但是,就在今天,我注意到 web.config 中的另一个部分如下所示:
This question already has answers here: Maven Compilation Error: (use -source 7 or higher to enable
我正在使用 Maven 3.0.5 和 Spring Tool Source 3.2 并安装了 Maven 插件。当我尝试执行“运行方式---> Maven 安装”时,出现以下错误: [INFO] S
我试图用 AngularJS 创建我自己的递归指令,它调用自己以漂亮的 JSON 格式转换 View 中的对象。好吧,首先我使用 ng-include 调用带有模板的脚本,在其中使用 ng-if 验证
可以通过 @suppress annotation使用Google的Closure Compiler在每个文件的基础上禁止显示警告。但是,似乎无法同时抑制多个警告-例如globalThis和check
假设一个拥有 10 到 20 年经验的熟练开发人员从未构建过编译器或模拟器,哪一个会更具挑战性? 你能比较一下会成为障碍的问题吗? 谢谢。 最佳答案 仿真和编译是完全不同的,但由于两者都被认为是“低级
最近发现Vim中有一个命令叫compiler。您可以使用任何常见的编译器(例如,:compiler gcc、:compiler php 等)来调用它,但它似乎没有任何立竿见影的效果。 我在联机帮助页上
我试图从 spring.io 指南中部署最简单的应用程序 Guide 但是我有一些麻烦.. 我做了什么: 创建的项目。 (来自 spring.io 教程) 下载 heroku CLI 在 Intell
每当进行 Maven Build..>clean install 时,我都会遇到此错误。我尝试过使用不同版本的插件并添加 testFailureIgnore 属性,但问题仍然存在。请找到下面的 POM
我有一个 web 应用程序,我尝试使用 maven 进行编译,不幸的是,在执行 mvn clean package 时它不起作用。 stackoverflow 上有很多问题看起来都一样,但没有解决了我
我是一名优秀的程序员,十分优秀!