org.apache.lucene.analysis
Class MockTokenFilter

java.lang.Object
  extended by org.apache.lucene.util.AttributeSource
      extended by org.apache.lucene.analysis.TokenStream
          extended by org.apache.lucene.analysis.TokenFilter
              extended by org.apache.lucene.analysis.MockTokenFilter
All Implemented Interfaces:
Closeable

public final class MockTokenFilter
extends TokenFilter

A tokenfilter for testing that removes terms accepted by a DFA.


Nested Class Summary
 
Nested classes/interfaces inherited from class org.apache.lucene.util.AttributeSource
AttributeSource.AttributeFactory, AttributeSource.State
 
Field Summary
static CharacterRunAutomaton EMPTY_STOPSET
          Empty set of stopwords
static CharacterRunAutomaton ENGLISH_STOPSET
          Set of common english stopwords
 
Fields inherited from class org.apache.lucene.analysis.TokenFilter
input
 
Constructor Summary
MockTokenFilter(TokenStream input, CharacterRunAutomaton filter)
          Create a new MockTokenFilter.
 
Method Summary
 void end()
           
 boolean incrementToken()
           
 void reset()
           
 
Methods inherited from class org.apache.lucene.analysis.TokenFilter
close
 
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
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

EMPTY_STOPSET

public static final CharacterRunAutomaton EMPTY_STOPSET
Empty set of stopwords


ENGLISH_STOPSET

public static final CharacterRunAutomaton ENGLISH_STOPSET
Set of common english stopwords

Constructor Detail

MockTokenFilter

public MockTokenFilter(TokenStream input,
                       CharacterRunAutomaton filter)
Create a new MockTokenFilter.

Parameters:
input - TokenStream to filter
filter - DFA representing the terms that should be removed.
Method Detail

incrementToken

public boolean incrementToken()
                       throws IOException
Specified by:
incrementToken in class TokenStream
Throws:
IOException

end

public void end()
         throws IOException
Overrides:
end in class TokenFilter
Throws:
IOException

reset

public void reset()
           throws IOException
Overrides:
reset in class TokenFilter
Throws:
IOException


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