Class 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 Detail

      • NewlineSentenceDetector

        public NewlineSentenceDetector()
    • Method Detail

      • sentDetect

        public String[] sentDetect​(String s)
        Description copied from interface: SentenceDetector
        Sentence detect a string.
        Specified by:
        sentDetect in interface SentenceDetector
        Parameters:
        s - The string to be sentence detected.
        Returns:
        The String[] with the individual sentences as the array elements.
      • sentPosDetect

        public Span[] sentPosDetect​(String s)
        Description copied from interface: SentenceDetector
        Sentence detect a string.
        Specified by:
        sentPosDetect in 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.