Inheritance diagram for fiftyone.common.wrappers.data.BinaryWriter:
Collaboration diagram for fiftyone.common.wrappers.data.BinaryWriter:
Classes
interface
| WritableSeekable
|
Public Member Functions
| BinaryWriter (FileOutputStream outputStream) throws IOException
Construct a new instance of the binary writer ready to write a data set to the file specified. More...
|
| BinaryWriter (ByteArrayOutputStream outputStream)
|
void
| writeInt16 (short value) throws IOException
Write a short to the output file. More...
|
void
| writeInt32 (int value) throws IOException
Write an int to the output file. More...
|
void
| writeInt64 (long value) throws IOException
Write a long to the output file. More...
|
void
| writeBytes (byte[] value) throws IOException
Write a series of bytes to the output file. More...
|
void
| writeBytes (byte[] value, int length) throws IOException
|
void
| writeByte (byte value) throws IOException
Write a single byte to the output file. More...
|
void
| close () throws IOException
|