Overload List

  NameDescription
Public methodStopFilter(TokenStream, Hashtable) Obsolete.
Constructs a filter which removes words from the input TokenStream that are named in the Set.
Public methodStopFilter(TokenStream, array<String>[]()[][]) Obsolete.
Construct a token stream filtering the given input.
Public methodStopFilter(Boolean, TokenStream, Hashtable)
Constructs a filter which removes words from the input TokenStream that are named in the Set.
Public methodStopFilter(Boolean, TokenStream, array<String>[]()[][]) Obsolete.
Construct a token stream filtering the given input.
Public methodStopFilter(TokenStream, Hashtable, Boolean) Obsolete.
Construct a token stream filtering the given input. If
CopyC#
stopWords
is an instance of {@link CharArraySet} (true if
CopyC#
makeStopSet()
was used to construct the set) it will be directly used and
CopyC#
ignoreCase
will be ignored since
CopyC#
CharArraySet
directly controls case sensitivity.

If

CopyC#
stopWords
is not an instance of {@link CharArraySet}, a new CharArraySet will be constructed and
CopyC#
ignoreCase
will be used to specify the case sensitivity of that set.
Public methodStopFilter(TokenStream, array<String>[]()[][], Boolean) Obsolete.
Constructs a filter which removes words from the input TokenStream that are named in the array of words.
Public methodStopFilter(Boolean, TokenStream, Hashtable, Boolean)
Construct a token stream filtering the given input. If
CopyC#
stopWords
is an instance of {@link CharArraySet} (true if
CopyC#
makeStopSet()
was used to construct the set) it will be directly used and
CopyC#
ignoreCase
will be ignored since
CopyC#
CharArraySet
directly controls case sensitivity.

If

CopyC#
stopWords
is not an instance of {@link CharArraySet}, a new CharArraySet will be constructed and
CopyC#
ignoreCase
will be used to specify the case sensitivity of that set.
Public methodStopFilter(Boolean, TokenStream, array<String>[]()[][], Boolean) Obsolete.
Constructs a filter which removes words from the input TokenStream that are named in the array of words.

See Also