org.apache.lucene.analysis.en.EnglishMinimalStemFilter Java Examples
The following examples show how to use
org.apache.lucene.analysis.en.EnglishMinimalStemFilter.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: TestSpanishMinimalStemFilter.java From lucene-solr with Apache License 2.0 | 5 votes |
public void testEmptyTerm() throws IOException { Analyzer a = new Analyzer() { @Override protected TokenStreamComponents createComponents(String fieldName) { Tokenizer tokenizer = new KeywordTokenizer(); return new TokenStreamComponents(tokenizer, new EnglishMinimalStemFilter(tokenizer)); } }; checkOneTerm(a, "", ""); a.close(); }