Klasse CollectionObjectStream<E>

java.lang.Object
opennlp.tools.util.CollectionObjectStream<E>
Typparameter:
E - The generic type of the elements.
Alle implementierten Schnittstellen:
AutoCloseable, ObjectStream<E>

public class CollectionObjectStream<E> extends Object implements ObjectStream<E>
An ObjectStream implementation that works on a Collection of CollectionObjectStream as source for elements.
  • Konstruktordetails

    • CollectionObjectStream

      public CollectionObjectStream(Collection<E> collection)
  • Methodendetails

    • read

      public E read()
      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<E>
      Gibt zurück:
      The next object or null to signal that the stream is exhausted.
    • 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<E>
    • close

      public void close()
      Beschreibung aus Schnittstelle kopiert: ObjectStream
      Closes the ObjectStream and releases all allocated resources. After close was called, it's not allowed to call ObjectStream.read() or ObjectStream.reset().
      Angegeben von:
      close in Schnittstelle AutoCloseable
      Angegeben von:
      close in Schnittstelle ObjectStream<E>