Package opennlp.tools.util
Class EventTraceStream
- java.lang.Object
-
- opennlp.tools.util.FilterObjectStream<Event,Event>
-
- opennlp.tools.util.EventTraceStream
-
- All Implemented Interfaces:
AutoCloseable
,ObjectStream<Event>
public class EventTraceStream extends FilterObjectStream<Event,Event>
-
-
Constructor Summary
Constructors Constructor Description EventTraceStream(ObjectStream<Event> stream, Writer writer)
Initializes anEventTraceStream
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Event
read()
Returns the nextObjectStream
object.-
Methods inherited from class opennlp.tools.util.FilterObjectStream
close, reset
-
-
-
-
Constructor Detail
-
EventTraceStream
public EventTraceStream(ObjectStream<Event> stream, Writer writer)
Initializes anEventTraceStream
.
-
-
Method Detail
-
read
public Event read() throws IOException
Description copied from interface:ObjectStream
Returns the nextObjectStream
object. Calling this method repeatedly until it returnsnull
will return each object from the underlying source exactly once.- Returns:
- The next object or
null
to signal that the stream is exhausted. - Throws:
IOException
- Thrown if there is an error during reading.
-
-