public static double getPercentage(ConfigurationSection config, String key, double def) {
double percent = config.getDouble(key, def);
if(percent < 0 || percent > 1) {
throw new IllegalArgumentException("Config value " + key + ": percentage must be between 0 and 1");
}
return percent;
}
ConfigUtils.java 文件源码
java
阅读 23
收藏 0
点赞 0
评论 0
项目:ProjectAres
作者:
评论列表
文章目录