All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.renlm.plugins.ConstVal Maven / Gradle / Ivy

There is a newer version: 2.8.8
Show newest version
/*
 * Copyright (c) 2020 Renlm
 * MyUtil is licensed under Mulan PSL v2.
 * You can use this software according to the terms and conditions of the Mulan PSL v2.
 * You may obtain a copy of Mulan PSL v2 at:
 * 	http://license.coscl.org.cn/MulanPSL2
 * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
 * See the Mulan PSL v2 for more details.
 */
package cn.renlm.plugins;

import lombok.experimental.UtilityClass;

/**
 * 常量池
 * 
 * @author RenLiMing(任黎明)
 *
 */
@UtilityClass
public class ConstVal {

	public static final String AUTHOR 			= "RenLiMing(任黎明)";
	public static final String VERSION 			= "2.7.11";

	public static final String NAME 			= ConstVal.class.getName();

	public static final String userDir 			= System.getProperty("user.dir");
	public static final String javaDir 			= userDir + "/src/main/java";
	public static final String resourcesDir 	= userDir + "/src/main/resources";
	public static final String javaTestDir 		= userDir + "/src/test/java";
	public static final String resourcesTestDir = userDir + "/src/test/resources";

	/**
	 * 默认字体,宋体
	 */
	public static final String FONT = "SimSun";

	/**
	 * 默认字体大小,10号
	 */
	public static final short FONT_SIZE = 10;

	/**
	 * 最小列宽
	 */
	public static final int COL_MIN_WIDTH = 256 * 8;

	/**
	 * 最大列宽
	 */
	public static final int COL_MAX_WIDTH = 256 * 64;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy