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

querqy.lucene.contrib.rewrite.wordbreak.LuceneWordBreaker Maven / Gradle / Ivy

The newest version!
package querqy.lucene.contrib.rewrite.wordbreak;

import org.apache.lucene.analysis.CharArraySet;
import org.apache.lucene.index.IndexReader;

import java.io.IOException;
import java.util.List;

/**
 * @author renekrie
 */
public interface LuceneWordBreaker {

    List breakWord(CharSequence word,
                                   IndexReader indexReader,
                                   int maxDecompoundExpansions,
                                   boolean verifyCollation) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy