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

com.hb0730.commons.lang.constants.CharConst Maven / Gradle / Ivy

There is a newer version: 2.1.2-RELEASE
Show newest version
package com.hb0730.commons.lang.constants;

/**
 * 字符常量
 *
 * @author bing_huang
 * @since 1.0.1
 */
public class CharConst {
    private CharConst() {
    }

    /**
     * 逗号
     */
    public static final char COMMA = ',';

    /**
     * 冒号
     */
    public static final char COLON = ':';

    /**
     * char 小数点
     */
    public static final char DOT = '.';

    /**
     * char 双引号
     */
    public static final char DOUBLE_QUOTES = '"';

    /**
     * char 反斜杠
     */
    public static final char BACK_SLASH = '\\';

    /**
     * char 空格
     */
    public static final char BLANK = ' ';

    /**
     * 星星
     */
    public static final char STAR = '*';
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy