org.apache.lucene.analysis
Class KeywordAnalyzer
public class KeywordAnalyzer
"Tokenizes" the entire stream as a single token. This is useful
for data like zip codes, ids, and some product names.
TokenStream | tokenStream(String fieldName, Reader reader) - Creates a TokenStream which tokenizes all the text in the provided
Reader.
|
tokenStream
public TokenStream tokenStream(String fieldName,
Reader reader)
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.
- tokenStream in interface Analyzer
Copyright © 2000-2007 Apache Software Foundation. All Rights Reserved.