Package opennlp.tools.ml.model
Class HashSumEventStream
- All Implemented Interfaces:
AutoCloseable,ObjectStream<Event>
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class opennlp.tools.util.AbstractObjectStream
close, reset
-
Constructor Details
-
HashSumEventStream
-
-
Method Details
-
read
Description copied from interface:ObjectStreamReturns the next object. Calling this method repeatedly until it returns null will return each object from the underlying source exactly once.- Specified by:
readin interfaceObjectStream<Event>- Overrides:
readin classAbstractObjectStream<Event>- Returns:
- the next object or null to signal that the stream is exhausted
- Throws:
IOException- if there is an error during reading
-
calculateHashSum
Calculates the hash sum of the stream. The method must be called after the stream is completely consumed.- Returns:
- the hash sum
- Throws:
IllegalStateException- if the stream is not consumed completely, completely means that hasNext() returns false
-
remove
public void remove()
-