com.github.chen0040.data.text.Tokenizer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-data-text Show documentation
Show all versions of java-data-text Show documentation
Java implementation of text processing such as stemmers
package com.github.chen0040.data.text;
import java.util.List;
/**
* Created by xschen on 9/10/15.
*/
public interface Tokenizer {
List tokenize(String text);
}