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>
public class MascSentenceSampleStream extends FilterObjectStream<MascDocument,SentenceSample>
-
-
Constructor Summary
Constructors Constructor Description MascSentenceSampleStream(ObjectStream<MascDocument> samples, int sentencesPerSample)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
Closes theObjectStream
and releases all allocated resources.SentenceSample
read()
Reads a newsample of sentences
.void
reset()
Repositions the stream at the beginning and the previously seen object sequence will be repeated exactly.
-
-
-
Constructor Detail
-
MascSentenceSampleStream
public MascSentenceSampleStream(ObjectStream<MascDocument> samples, int sentencesPerSample) throws IOException
- Throws:
IOException
-
-
Method Detail
-
read
public SentenceSample read() throws IOException
Reads 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.
-
close
public void close() throws IOException
Description copied from interface:ObjectStream
Closes theObjectStream
and releases all allocated resources. After close was called, it's not allowed to callObjectStream.read()
orObjectStream.reset()
.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceObjectStream<SentenceSample>
- Overrides:
close
in classFilterObjectStream<MascDocument,SentenceSample>
- Throws:
IOException
- Thrown if there is an error during closing the stream.
-
reset
public void reset() throws IOException, UnsupportedOperationException
Description copied from interface: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.
- Specified by:
reset
in interfaceObjectStream<SentenceSample>
- Overrides:
reset
in classFilterObjectStream<MascDocument,SentenceSample>
- Throws:
IOException
- Thrown if there is an error during resetting the stream.UnsupportedOperationException
- Thrown if thereset()
is not supported. By default, this is the case.
-
-