Java org.apache.lucene.analysis StopFilter fields, constructors, methods, implement or subclass

Example usage for Java org.apache.lucene.analysis StopFilter fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.lucene.analysis StopFilter.

The text is from its open source code.

Constructor

StopFilter(TokenStream in, CharArraySet stopWords)
Constructs a filter which removes words from the input TokenStream that are named in the Set.

Method

CharArraySetmakeStopSet(String... stopWords)
Builds a Set from an array of stop words, appropriate for passing into the StopFilter constructor.
CharArraySetmakeStopSet(List stopWords)
Builds a Set from an array of stop words, appropriate for passing into the StopFilter constructor.
CharArraySetmakeStopSet(String[] stopWords, boolean ignoreCase)
Creates a stopword set from the given stopword array.
CharArraySetmakeStopSet(List stopWords, boolean ignoreCase)
Creates a stopword set from the given stopword list.