MCPcopy Create free account
hub / github.com/SeanDragon/protools / StrConst

Class StrConst

common/src/main/java/pro/tools/constant/StrConst.java:12–28  ·  view source on GitHub ↗

Created on 17/4/8 13:04 星期六. 字符串常量 @author SeanDragon

Source from the content-addressed store, hash-verified

10 * @author SeanDragon
11 */
12public final class StrConst {
13
14 private StrConst() {
15 throw new UnsupportedOperationException("我是工具类,别初始化我。。。");
16 }
17
18 /**
19 * 默认编码
20 */
21 public static final String DEFAULT_CHARSET_NAME = "UTF-8";
22 public static final Charset DEFAULT_CHARSET = Charset.forName(DEFAULT_CHARSET_NAME);
23 /**
24 * 文件分隔符
25 */
26 public static final String FILE_SEP = File.separator;
27 public static final String FILE_PATH_SEP = File.pathSeparator;
28}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected