Package opennlp.tools.formats.convert
Class FileToByteArraySampleStream
java.lang.Object
opennlp.tools.util.FilterObjectStream<File,byte[]>
opennlp.tools.formats.convert.FileToByteArraySampleStream
- All Implemented Interfaces:
AutoCloseable
,ObjectStream<byte[]>
Note:
Do not use this class, internal use only!
-
Constructor Summary
ConstructorDescriptionFileToByteArraySampleStream
(ObjectStream<File> samples) Initializes aFileToByteArraySampleStream
. -
Method Summary
Methods inherited from class opennlp.tools.util.FilterObjectStream
close, reset
-
Constructor Details
-
FileToByteArraySampleStream
Initializes aFileToByteArraySampleStream
.- Parameters:
samples
- TheObjectStream
containing the files.
-
-
Method Details
-
read
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.
-