FileDocCategorySizeDatePackage
TokenFilter.javaAPI DocApache Lucene 2.2.01359Sat Jun 16 22:20:30 BST 2007org.apache.lucene.analysis

TokenFilter

public abstract class TokenFilter extends TokenStream
A TokenFilter is a TokenStream whose input is another token stream.

This is an abstract class.

Fields Summary
protected TokenStream
input
The source of tokens for this filter.
Constructors Summary
protected TokenFilter(TokenStream input)
Construct a token stream filtering the given input.

    this.input = input;
  
Methods Summary
public voidclose()
Close the input TokenStream.

    input.close();