public interface ILexicalData
| Modifier and Type | Method and Description |
|---|---|
boolean |
isCommonWord(MutableCharArray word) |
boolean |
isStopLabel(CharSequence formattedLabel) |
boolean isCommonWord(MutableCharArray word)
true if word is common (meaningless) in
this language. Such words are referred to as "stop words" and are usually
ignored in information retrieval tasks. Depending on the implementation,
word may be lower-cased internally.boolean isStopLabel(CharSequence formattedLabel)
true if the formattedLabel has been
declared a stop label (meaningless) in this language. This is a very
low-level tuning method.