Klasse NKJPSentenceSampleStream

java.lang.Object
opennlp.tools.formats.nkjp.NKJPSentenceSampleStream
Alle implementierten Schnittstellen:
AutoCloseable, ObjectStream<SentenceSample>

public class NKJPSentenceSampleStream extends Object implements ObjectStream<SentenceSample>
  • Methodendetails

    • read

      public SentenceSample read() throws IOException
      Beschreibung aus Schnittstelle kopiert: ObjectStream
      Returns the next ObjectStream object. Calling this method repeatedly until it returns null will return each object from the underlying source exactly once.
      Angegeben von:
      read in Schnittstelle ObjectStream<SentenceSample>
      Gibt zurück:
      The next object or null to signal that the stream is exhausted.
      Löst aus:
      IOException - Thrown if there is an error during reading.
    • reset

      public void reset()
      Beschreibung aus Schnittstelle kopiert: ObjectStream
      Repositions the stream at the beginning and the previously seen object sequence will be repeated exactly. This method can be used to re-read the stream if multiple passes over the objects are required.

      The implementation of this method is optional.

      Angegeben von:
      reset in Schnittstelle ObjectStream<SentenceSample>