Package opennlp.tools.postag
Interface TagDictionary
-
- All Known Subinterfaces:
MutableTagDictionary
- All Known Implementing Classes:
POSDictionary
public interface TagDictionary
Interface to determine which tags are valid for a particular word based on a tag dictionary.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String[]
getTags(String word)
Retrieves a list of valid tags for the specifiedword
.boolean
isCaseSensitive()
Whether the dictionary is case-sensitive or not.
-
-
-
Method Detail
-
getTags
String[] getTags(String word)
Retrieves a list of valid tags for the specifiedword
.- Parameters:
word
- The word.- Returns:
- An array of valid tags for the specified
word
ornull
if no information is available for that word.
-
isCaseSensitive
boolean isCaseSensitive()
Whether the dictionary is case-sensitive or not.- Returns:
true
if the dictionary is case-sensitive, elsefalse
.
-
-