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[]>
@Internal public class FileToByteArraySampleStream extends FilterObjectStream<File,byte[]>
Note: Do not use this class, internal use only!
-
-
Constructor Summary
Constructors Constructor Description FileToByteArraySampleStream(ObjectStream<File> samples)
Initializes aFileToByteArraySampleStream
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
read()
Returns the nextObjectStream
object.-
Methods inherited from class opennlp.tools.util.FilterObjectStream
close, reset
-
-
-
-
Constructor Detail
-
FileToByteArraySampleStream
public FileToByteArraySampleStream(ObjectStream<File> samples)
Initializes aFileToByteArraySampleStream
.- Parameters:
samples
- TheObjectStream
containing the files.
-
-
Method Detail
-
read
public byte[] read() throws IOException
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.
-
-