org.nutz.Nutz Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nutz Show documentation
Show all versions of nutz Show documentation
Nutz, which is a collections of lightweight frameworks, each of them can be used independently
package org.nutz;
/**
* 用于识别当前版本号和版权声明!
* Nutz is Licensed under the Apache License, Version 2.0 (the "License")
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* @author Wendal([email protected])
*
*/
public final class Nutz {
/**
* 标示类,没有new的可能性
*/
Nutz() {}
/**
* 获取 Nutz 的版本号,版本号的命名规范
*
*
* [大版本号].[质量号].[发布流水号]
*
*
* 这里有点说明
*
* - 大版本号 - 表示 API 的版本,如果没有重大变化,基本上同样的大版本号,使用方式是一致的
*
- 质量号 - 可能为 a: Alpha内部测试品质, b:Beta 公测品质, r:Release 最终发布版
*
- 发布流水 - 每次发布增加 1
*
*
* @return nutz 项目的版本号
*/
public static String version() {
return "1.r.68.v20201205";
}
/**
* 大版本号
*/
public static int majorVersion() {
return 1;
}
/**
* 发布流水
*/
public static int minorVersion() {
return 68;
}
/**
* 质量号
*/
public static String releaseLevel() {
return "r";
}
}