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

org.ansj.splitWord.GetWords Maven / Gradle / Ivy

There is a newer version: 5.1.6
Show newest version
package org.ansj.splitWord;

public interface GetWords {
	/**
	 * 全文全词全匹配
	 * 
	 * @param str
	 *            传入的需要分词的句子
	 * @return 返还分完词后的句子
	 */
	public String allWords();

	/**
	 * 同一个对象传入词语
	 * 
	 * @param temp
	 *            传入的句子
	 */
	public void setStr(String temp);

	/**
	 * 
	 * @return
	 */

	public void setChars(char[] chars, int start, int end);

	public int getOffe();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy