Examples of ReusableAnalyzerBase


Examples of org.apache.lucene.analysis.ReusableAnalyzerBase

* @deprecated Remove this test class (and its datafiles!) in Lucene 4.0
*/
@Deprecated
public class TestRussianStem extends LuceneTestCase {
  public void testStem() throws IOException {
    Analyzer a = new ReusableAnalyzerBase() {
      @Override
      protected TokenStreamComponents createComponents(String fieldName,
          Reader reader) {
        Tokenizer t = new KeywordTokenizer(reader);
        return new TokenStreamComponents(t, new RussianStemFilter(t));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.