com.truthbean.common.mini.CommonConstants Maven / Gradle / Ivy
/**
* Copyright (c) 2021 TruthBean(Rogar·Q)
* Debbie 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 com.truthbean.common.mini;
/**
* common constants.
*
* @author TruthBean/Rogar·Q
* @version 0.5.0
* @since 0.5.0
* Created on 2021-01-05 14:38
*/
public interface CommonConstants {
/**
* 英文逗号
*/
String COLON = ";";
/**
* 左大括号
*/
String LEFT_CURLY_BRACKET = "[";
/**
* 基本类型个数
*/
int PRIMITIVE_CLASS_NUMBER = 8;
/**
* 结束符
*/
int EOF = -1;
/**
* 字符串0
*/
char ZERO = '0';
/**
* 字符串9
*/
char NINE = '9';
/**
* 小写a
*/
char LOWERCASE_A = 'a';
/**
* 小写f
*/
char LOWERCASE_F = 'f';
/**
* 大写a
*/
char UPPERCASE_A = 'A';
/**
* 大写f
*/
char UPPERCASE_F = 'F';
/**
* 空class数组
*/
Class>[] EMPTY_CLASS_ARRAY = {};
/**
* 字符串true
*/
String TRUE = "true";
/**
* 字符串false
*/
String FALSE = "false";
}