Package opennlp.tools.sentdetect
Interface SDContextGenerator
-
- All Known Implementing Classes:
DefaultSDContextGenerator,SentenceContextGenerator
public interface SDContextGeneratorInterface forSentenceDetectorMEcontext generators.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String[]getContext(CharSequence s, int position)Returns an array of contextual features for the potential sentence boundary at the specified position within the specified string buffer.
-
-
-
Method Detail
-
getContext
String[] getContext(CharSequence s, int position)
Returns an array of contextual features for the potential sentence boundary at the specified position within the specified string buffer.- Parameters:
s- TheStringfor which sentences are being determined.position- An index into the specified string buffer when a sentence boundary may occur.- Returns:
- an array of contextual features for the potential sentence boundary at the
specified
positionwithin the specified string buffer.
-
-