Package weka.core.stopwords
Interface StopwordsHandler
- All Known Implementing Classes:
AbstractFileBasedStopwords
,AbstractStopwords
,MultiStopwords
,Null
,Rainbow
,RegExpFromFile
,WordsFromFile
public interface StopwordsHandler
Interface for classes that support stopword handling.
- Version:
- $Revision: 10978 $
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
Method Summary
Modifier and TypeMethodDescriptionboolean
isStopword
(String word) Returns true if the given string is a stop word.
-
Method Details
-
isStopword
Returns true if the given string is a stop word.- Parameters:
word
- the word to test- Returns:
- true if the word is a stopword
-