Class ParagraphStream

java.lang.Object
opennlp.tools.util.FilterObjectStream<String,String>
opennlp.tools.util.ParagraphStream
All Implemented Interfaces:
AutoCloseable, opennlp.tools.util.ObjectStream<String>

public class ParagraphStream extends opennlp.tools.util.FilterObjectStream<String,String>
A FilterObjectStream which merges text lines into paragraphs.

The boundary of paragraph is defined by an empty text line. If the last paragraph in the stream is not terminated by an empty line the left over is assumed to be a paragraph.

  • Constructor Summary

    Constructors
    Constructor
    Description
    ParagraphStream(opennlp.tools.util.ObjectStream<String> lineStream)
    Initializes an FilterObjectStream.
  • Method Summary

    Modifier and Type
    Method
    Description
     

    Methods inherited from class opennlp.tools.util.FilterObjectStream

    close, reset

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ParagraphStream

      public ParagraphStream(opennlp.tools.util.ObjectStream<String> lineStream)
      Initializes an FilterObjectStream.
      Parameters:
      lineStream - The stream of samples.
  • Method Details