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

org.wltea.analyzer.core.ISegmenter Maven / Gradle / Ivy

The newest version!
package org.wltea.analyzer.core;

/**
 * 子分词器接口
 */
interface ISegmenter {

	/**
	 * 从分析器读取下一个可能分解的词元对象
	 *
	 * @param context 分词算法上下文
	 */
	void analyze(AnalyzeContext context);

	/**
	 * 重置子分析器状态
	 */
	void reset();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy