Package org.apache.lucene.analysis
Class ValidatingTokenFilter
- java.lang.Object
-
- org.apache.lucene.util.AttributeSource
-
- org.apache.lucene.analysis.TokenStream
-
- org.apache.lucene.analysis.TokenFilter
-
- org.apache.lucene.analysis.ValidatingTokenFilter
-
- All Implemented Interfaces:
Closeable,AutoCloseable
public final class ValidatingTokenFilter extends org.apache.lucene.analysis.TokenFilterA TokenFilter that checks consistency of the tokens (eg offsets are consistent with one another).
-
-
Constructor Summary
Constructors Constructor Description ValidatingTokenFilter(org.apache.lucene.analysis.TokenStream in, String name, boolean offsetsAreCorrect)The name arg is used to identify this stage when throwing exceptions (useful if you have more than one instance in your chain).
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidend()booleanincrementToken()voidreset()-
Methods inherited from class org.apache.lucene.util.AttributeSource
addAttribute, addAttributeImpl, captureState, clearAttributes, cloneAttributes, copyTo, equals, getAttribute, getAttributeClassesIterator, getAttributeFactory, getAttributeImplsIterator, hasAttribute, hasAttributes, hashCode, reflectAsString, reflectWith, restoreState, toString
-
-
-
-
Constructor Detail
-
ValidatingTokenFilter
public ValidatingTokenFilter(org.apache.lucene.analysis.TokenStream in, String name, boolean offsetsAreCorrect)The name arg is used to identify this stage when throwing exceptions (useful if you have more than one instance in your chain).
-
-
Method Detail
-
incrementToken
public boolean incrementToken() throws IOException- Specified by:
incrementTokenin classorg.apache.lucene.analysis.TokenStream- Throws:
IOException
-
end
public void end() throws IOException- Overrides:
endin classorg.apache.lucene.analysis.TokenFilter- Throws:
IOException
-
reset
public void reset() throws IOException- Overrides:
resetin classorg.apache.lucene.analysis.TokenFilter- Throws:
IOException
-
-