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

me.aifaq.commons.lang.CharUtil Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
package me.aifaq.commons.lang;

/**
 * @author Wang Wei [[email protected]]
 * @since 14:15 2017/6/16
 */
public class CharUtil {
    /**
     * 逗号
     */
    public static final char COMMA = ',';
    /**
     * 分号
     */
    public static final char SEMICOLON = ';';
    /**
     * 空格
     */
    public static final char SPACING = ' ';
    /**
     * 换行
     */
    public static final char BR = '\n';
    /**
     * 正斜杠
     */
    public static final char FORWARD_SLASH = '/';
    /**
     * 反斜杠
     */
    public static final char BACK_SLASH = '\\';
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy