Uses of Class
org.apache.lucene.analysis.TokenStream

Packages that use TokenStream
org.apache.lucene.analysis API and code to convert text into indexable/searchable tokens. 
org.apache.lucene.document The logical representation of a Document for indexing and searching. 
org.apache.lucene.index Code to maintain and access indices. 
 

Uses of TokenStream in org.apache.lucene.analysis
 

Subclasses of TokenStream in org.apache.lucene.analysis
 class CachingTokenFilter
          This class can be used if the token attributes of a TokenStream are intended to be consumed more than once.
 class NumericTokenStream
          Expert: This class provides a TokenStream for indexing numeric values that can be used by NumericRangeQuery or NumericRangeFilter.
 class TokenFilter
          A TokenFilter is a TokenStream whose input is another TokenStream.
 class Tokenizer
          A Tokenizer is a TokenStream whose input is a Reader.
 

Fields in org.apache.lucene.analysis declared as TokenStream
protected  TokenStream TokenFilter.input
          The source of tokens for this filter.
protected  TokenStream Analyzer.TokenStreamComponents.sink
           
 

Methods in org.apache.lucene.analysis that return TokenStream
 TokenStream Analyzer.TokenStreamComponents.getTokenStream()
          Returns the sink TokenStream
 TokenStream Analyzer.tokenStream(String fieldName, Reader reader)
          Creates a TokenStream that is allowed to be re-use from the previous time that the same thread called this method.
 

Constructors in org.apache.lucene.analysis with parameters of type TokenStream
Analyzer.TokenStreamComponents(Tokenizer source, TokenStream result)
          Creates a new Analyzer.TokenStreamComponents instance.
CachingTokenFilter(TokenStream input)
           
TokenFilter(TokenStream input)
          Construct a token stream filtering the given input.
 

Uses of TokenStream in org.apache.lucene.document
 

Fields in org.apache.lucene.document declared as TokenStream
protected  TokenStream Field.tokenStream
           
 

Methods in org.apache.lucene.document that return TokenStream
 TokenStream Field.tokenStream(Analyzer analyzer)
          Creates the TokenStream used for indexing this field.
 TokenStream Field.tokenStreamValue()
          The TokesStream for this field to be used when indexing, or null.
 

Methods in org.apache.lucene.document with parameters of type TokenStream
 void Field.setTokenStream(TokenStream tokenStream)
          Expert: sets the token stream to be used for indexing and causes isIndexed() and isTokenized() to return true.
 

Constructors in org.apache.lucene.document with parameters of type TokenStream
Field(String name, TokenStream tokenStream)
          Deprecated. Use TextField instead
Field(String name, TokenStream tokenStream, Field.TermVector termVector)
          Deprecated. Use TextField instead
Field(String name, TokenStream tokenStream, FieldType type)
          Create field with TokenStream value.
TextField(String name, TokenStream stream)
          Creates a new un-stored TextField with TokenStream value.
 

Uses of TokenStream in org.apache.lucene.index
 

Methods in org.apache.lucene.index that return TokenStream
 TokenStream IndexableField.tokenStream(Analyzer analyzer)
          Creates the TokenStream used for indexing this field.
 



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