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 nextObjectStreamobject.-
Methods inherited from class opennlp.tools.util.FilterObjectStream
close, reset
-
-
-
-
Constructor Detail
-
FileToByteArraySampleStream
public FileToByteArraySampleStream(ObjectStream<File> samples)
Initializes aFileToByteArraySampleStream.- Parameters:
samples- TheObjectStreamcontaining the files.
-
-
Method Detail
-
read
public byte[] read() throws IOExceptionDescription copied from interface:ObjectStreamReturns the nextObjectStreamobject. Calling this method repeatedly until it returnsnullwill return each object from the underlying source exactly once.- Returns:
- The next object or
nullto signal that the stream is exhausted. - Throws:
IOException- Thrown if there is an error during reading.
-
-