Interface StopWordsService
-
- All Known Implementing Classes:
ConfigurableStopWordsService
public interface StopWordsService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
test(String word)
Checks whether a word is a stop word.
-
-
-
Method Detail
-
test
boolean test(String word)
Checks whether a word is a stop word.- Parameters:
word
- the word to filter.- Returns:
true
if the word is a stop word,false
otherwise.
-
-