org.apache.lucene.analysis
Class SimpleAnalyzer

java.lang.Object
  |
  +--org.apache.lucene.analysis.Analyzer
        |
        +--org.apache.lucene.analysis.SimpleAnalyzer

public final class SimpleAnalyzer
extends Analyzer

An Analyzer that filters LetterTokenizer with LowerCaseFilter.


Constructor Summary
SimpleAnalyzer()
           
 
Method Summary
 TokenStream tokenStream(String fieldName, Reader reader)
          Creates a TokenStream which tokenizes all the text in the provided Reader.
 
Methods inherited from class org.apache.lucene.analysis.Analyzer
tokenStream
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SimpleAnalyzer

public SimpleAnalyzer()
Method Detail

tokenStream

public final TokenStream tokenStream(String fieldName,
                                     Reader reader)
Description copied from class: Analyzer
Creates a TokenStream which tokenizes all the text in the provided Reader. Default implementation forwards to tokenStream(Reader) for compatibility with older version. Override to allow Analyzer to choose strategy based on document and/or field. Must be able to handle null field name for backward compatibility.
Overrides:
tokenStream in class Analyzer


Copyright © 2000-2002 Apache Software Foundation. All Rights Reserved.