Interface SentenceSplitter

All Known Implementing Classes:
BreakIteratorSentenceSplitter, SimpleSentenceSplitter

public interface SentenceSplitter
A sentence splitter segments text into sentences (a string of words satisfying the grammatical rules of a language).
  • Method Summary

    Modifier and Type
    Method
    Description
    split(String text)
    Splits the text into sentences.
  • Method Details

    • split

      String[] split(String text)
      Splits the text into sentences.
      Parameters:
      text - the text.
      Returns:
      the sentences.