com.mergeplus.constant.Constants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of merge-plus Show documentation
Show all versions of merge-plus Show documentation
merge-plus is a plus to merge dictionary value
The newest version!
package com.mergeplus.constant;
/**
* 项目名称:merge-plus
* 类 名 称:Constants
* 类 描 述:TODO
* 创建时间:2020/11/3 2:39 下午
* 创 建 人:chenyouhong
*/
public interface Constants {
/**
*
*/
String LEFT_BRACE = "{";
/**
*
*/
String RIGHT_BRACE = "}";
/**
*
*/
String COLON = ":";
/**
* redis分隔文件夹
*/
String DOUBLE_COLON = "::";
/**
*
*/
String BLANK = "";
/**
*
*/
String REPLACE_BRACE_CONTENT_REGEX = "\\{.*\\}";
/**
*
*/
String AUTO_LOAD_CACHE_KEY = "cacheObject";
}