com.github.houbb.chinese.idiom.constant.ChineseIdiomConst Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chinese-idiom Show documentation
Show all versions of chinese-idiom Show documentation
The chinese-idiom tools for chinese by java.
The newest version!
package com.github.houbb.chinese.idiom.constant;
/**
* @author binbin.hou
* @since 0.0.1
*/
public class ChineseIdiomConst {
private ChineseIdiomConst(){}
/**
* 索引目录
* @since 0.0.1
*/
public static final String IDIOM_INDEX_DICT_PATH = "/chinese_idiom_index.txt";
/**
* 完整的 json 目录
* @since 0.0.1
*/
public static final String IDIOM_DICT_PATH = "/chinese_idiom.json";
/**
* 默认的限制数量
* @since 0.0.1
*/
public static final int DEFAULT_LIMIT = 5;
}