Package opennlp.tools.sentdetect
Class NewlineSentenceDetector
java.lang.Object
opennlp.tools.sentdetect.NewlineSentenceDetector
- All Implemented Interfaces:
SentenceDetector
The Newline
SentenceDetector
assumes that sentences are line delimited and
recognizes one sentence per non-empty line.-
Constructor Details
-
NewlineSentenceDetector
public NewlineSentenceDetector()
-
-
Method Details
-
sentDetect
Description copied from interface:SentenceDetector
Detects sentences in a character sequence.- Specified by:
sentDetect
in interfaceSentenceDetector
- Parameters:
s
- TheCharSequence
for which sentences shall to be detected.- Returns:
- The String[] with the individual sentences as the array elements.
-
sentPosDetect
Description copied from interface:SentenceDetector
Detects sentences in a character sequence.- Specified by:
sentPosDetect
in interfaceSentenceDetector
- Parameters:
s
- TheCharSequence
for which sentences shall be detected.- Returns:
- The array of
spans
(offsets intos
) for each detected sentence as the individuals array elements.
-