Package opennlp.tools.ml.model
Class HashSumEventStream
- All Implemented Interfaces:
 AutoCloseable,ObjectStream<Event>
A hash sum based 
AbstractObjectStream implementation.- See Also:
 
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionCalculates the hash sum of the stream and wraps it into aBigInteger.read()Returns the nextObjectStreamobject.Methods inherited from class opennlp.tools.util.AbstractObjectStream
close, reset 
- 
Constructor Details
- 
HashSumEventStream
 
 - 
 - 
Method Details
- 
read
Description copied from interface:ObjectStreamReturns the nextObjectStreamobject. Calling this method repeatedly until it returnsnullwill return each object from the underlying source exactly once.- Specified by:
 readin interfaceObjectStream<Event>- Overrides:
 readin classAbstractObjectStream<Event>- Returns:
 - The next object or 
nullto signal that the stream is exhausted. - Throws:
 IOException- Thrown if there is an error during reading.
 - 
calculateHashSum
Calculates the hash sum of the stream and wraps it into aBigInteger. Note: The method must be called after the stream is completely consumed.- Returns:
 - The calculated hash sum as 
BigInteger. - Throws:
 IllegalStateException- Thrown if the stream is not consumed completely, completely means that hasNext() returnsfalse.
 
 -