作者热门文章
- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.onosproject.yang.compiler.utils.io.impl.YangIoUtils.trimAtLast()
方法的一些代码示例,展示了YangIoUtils.trimAtLast()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YangIoUtils.trimAtLast()
方法的具体详情如下:
包路径:org.onosproject.yang.compiler.utils.io.impl.YangIoUtils
类名称:YangIoUtils
方法名:trimAtLast
[英]Removes extra char from the string.
[中]从字符串中删除额外的字符。
代码示例来源: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-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);
}
本文整理了Java中org.onosproject.yang.compiler.utils.io.impl.YangIoUtils.getCapitalCase()方法的一些代码示例,展示了YangI
本文整理了Java中org.onosproject.yang.compiler.utils.io.impl.YangIoUtils.trimAtLast()方法的一些代码示例,展示了YangIoUti
我是一名优秀的程序员,十分优秀!