querqy.lucene.contrib.rewrite.wordbreak.LuceneWordBreaker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of querqy-lucene Show documentation
Show all versions of querqy-lucene Show documentation
Querqy library for query rewriting for Lucene
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