me.dhf.dict.chain.SelectProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dhf-dict Show documentation
Show all versions of dhf-dict Show documentation
Generate global dictionary JSON file and map for calling in the previous section or view
The newest version!
package me.dhf.dict.chain;
import java.util.Map;
/**
* select处理接口
* @author 邓华锋 http://dhf.ink
*
*/
public interface SelectProcessor {
void process(String value,String text);
void put(String key);
void putGlobalDict(Map globalDictVal);
}