Package opennlp.tools.tokenize
Interface TokenContextGenerator
-
- All Known Implementing Classes:
DefaultTokenContextGenerator
public interface TokenContextGenerator
Interface forTokenizerME
context generators.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String[]
getContext(java.lang.String sentence, int index)
Returns an array of features for the specified sentence string at the specified index.
-
-
-
Method Detail
-
getContext
java.lang.String[] getContext(java.lang.String sentence, int index)
Returns an array of features for the specified sentence string at the specified index.- Parameters:
sentence
- The string for a sentence.index
- The index to consider splitting as a token.- Returns:
- an array of features for the specified sentence string at the specified index.
-
-