|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.lucene.analysis.TokenStream
org.apache.lucene.analysis.TokenFilter
public abstract class TokenFilter
A TokenFilter is a TokenStream whose input is another token stream.
This is an abstract class.
NOTE: subclasses must override TokenStream.next(Token). It's
also OK to instead override TokenStream.next() but that
method is now deprecated in favor of TokenStream.next(Token).
| Field Summary | |
|---|---|
protected TokenStream |
input
The source of tokens for this filter. |
| Constructor Summary | |
|---|---|
protected |
TokenFilter(TokenStream input)
Construct a token stream filtering the given input. |
| Method Summary | |
|---|---|
void |
close()
Close the input TokenStream. |
void |
reset()
Reset the filter as well as the input TokenStream. |
| Methods inherited from class org.apache.lucene.analysis.TokenStream |
|---|
next, next |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected TokenStream input
| Constructor Detail |
|---|
protected TokenFilter(TokenStream input)
| Method Detail |
|---|
public void close()
throws IOException
close in class TokenStreamIOException
public void reset()
throws IOException
reset in class TokenStreamIOException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||