Package opennlp.tools.sentdetect
Class NewlineSentenceDetector
- java.lang.Object
- 
- opennlp.tools.sentdetect.NewlineSentenceDetector
 
- 
- All Implemented Interfaces:
- SentenceDetector
 
 public class NewlineSentenceDetector extends Object implements SentenceDetector The Newline Sentence Detector assumes that sentences are line delimited and recognizes one sentence per non-empty line.
- 
- 
Constructor SummaryConstructors Constructor Description NewlineSentenceDetector()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description String[]sentDetect(String s)Sentence detect a string.Span[]sentPosDetect(String s)Sentence detect a string.
 
- 
- 
- 
Method Detail- 
sentDetectpublic String[] sentDetect(String s) Description copied from interface:SentenceDetectorSentence detect a string.- Specified by:
- sentDetectin interface- SentenceDetector
- Parameters:
- s- The string to be sentence detected.
- Returns:
- The String[] with the individual sentences as the array elements.
 
 - 
sentPosDetectpublic Span[] sentPosDetect(String s) Description copied from interface:SentenceDetectorSentence detect a string.- Specified by:
- sentPosDetectin interface- SentenceDetector
- Parameters:
- s- The string to be sentence detected.
- Returns:
- The Span[] with the spans (offsets into s) for each detected sentence as the individuals array elements.
 
 
- 
 
-