Package opennlp.tools.formats.masc
Class MascSentenceSampleStream
java.lang.Object
opennlp.tools.util.FilterObjectStream<MascDocument,SentenceSample>
 
opennlp.tools.formats.masc.MascSentenceSampleStream
- All Implemented Interfaces:
- AutoCloseable,- ObjectStream<SentenceSample>
- 
Constructor SummaryConstructorsConstructorDescriptionMascSentenceSampleStream(ObjectStream<MascDocument> samples, int sentencesPerSample) 
- 
Method SummaryModifier and TypeMethodDescriptionread()Reads a newsample of sentences.voidreset()Repositions the stream at the beginning and the previously seen object sequence will be repeated exactly.Methods inherited from class opennlp.tools.util.FilterObjectStreamclose
- 
Constructor Details- 
MascSentenceSampleStreampublic MascSentenceSampleStream(ObjectStream<MascDocument> samples, int sentencesPerSample) throws IOException - Throws:
- IOException
 
 
- 
- 
Method Details- 
readReads a newsample of sentences.- Returns:
- The specified number of sentences. If fewer left, then return whatever is left.
- Throws:
- IOException- Thrown if IO errors occurred during read operation.
 
- 
resetDescription copied from interface:ObjectStreamRepositions 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. - Specified by:
- resetin interface- ObjectStream<SentenceSample>
- Overrides:
- resetin class- FilterObjectStream<MascDocument,- SentenceSample> 
- Throws:
- IOException- Thrown if there is an error during resetting the stream.
- UnsupportedOperationException- Thrown if the- reset()is not supported. By default, this is the case.
 
 
-