com.ideaaedi.commonds.constants.StrConstant Maven / Gradle / Ivy
The newest version!
package com.ideaaedi.commonds.constants;
/**
* 常用字符常量类
*
* @author JustryDeng
* @since 1.0.0
*/
public interface StrConstant {
/** jar包后缀 */
String JAR_SUFFIX = ".jar";
/** war包后缀 */
String WAR_SUFFIX = ".war";
/** class文件后缀 */
String CLASS_SUFFIX = ".class";
}