public class TypeWriter
extends java.lang.Object
Class for writing little-endian data and more.
Constructor | Description |
---|---|
TypeWriter() |
Modifier and Type | Method | Description |
---|---|---|
static int |
writeToStream(java.io.OutputStream out,
double n) |
Writes a double value value to an output stream.
|
static int |
writeToStream(java.io.OutputStream out,
int n) |
Writes a four-byte value to an output stream.
|
static int |
writeToStream(java.io.OutputStream out,
long n) |
Writes a eight-byte value to an output stream.
|
static int |
writeToStream(java.io.OutputStream out,
short n) |
Writes a two-byte value (short) to an output stream.
|
static int |
writeToStream(java.io.OutputStream out,
ClassID n) |
Writes a 16-byte
ClassID to an output stream. |
static void |
writeToStream(java.io.OutputStream out,
Property[] properties,
int codepage) |
Writes an array of
Property instances to an output stream
according to the Horrible Property Stream Format. |
static int |
writeUIntToStream(java.io.OutputStream out,
long n) |
Writes an unsigned four-byte value to an output stream.
|
static void |
writeUShortToStream(java.io.OutputStream out,
int n) |
Writes an unsigned two-byte value to an output stream.
|
public static int writeToStream(java.io.OutputStream out, short n) throws java.io.IOException
Writes a two-byte value (short) to an output stream.
out
- The stream to write to.n
- The value to write.java.io.IOException
- if an I/O error occurspublic static int writeToStream(java.io.OutputStream out, int n) throws java.io.IOException
Writes a four-byte value to an output stream.
out
- The stream to write to.n
- The value to write.java.io.IOException
- if an I/O error occurspublic static int writeToStream(java.io.OutputStream out, long n) throws java.io.IOException
Writes a eight-byte value to an output stream.
out
- The stream to write to.n
- The value to write.java.io.IOException
- if an I/O error occurspublic static void writeUShortToStream(java.io.OutputStream out, int n) throws java.io.IOException
Writes an unsigned two-byte value to an output stream.
out
- The stream to write ton
- The value to writejava.io.IOException
- if an I/O error occurspublic static int writeUIntToStream(java.io.OutputStream out, long n) throws java.io.IOException
Writes an unsigned four-byte value to an output stream.
out
- The stream to write to.n
- The value to write.java.io.IOException
- if an I/O error occurspublic static int writeToStream(java.io.OutputStream out, ClassID n) throws java.io.IOException
Writes a 16-byte ClassID
to an output stream.
out
- The stream to write ton
- The value to writejava.io.IOException
- if an I/O error occurspublic static void writeToStream(java.io.OutputStream out, Property[] properties, int codepage) throws java.io.IOException, UnsupportedVariantTypeException
Writes an array of Property
instances to an output stream
according to the Horrible Property Stream Format.
out
- The stream to write toproperties
- The array to write to the streamcodepage
- The codepage number to use for writing stringsjava.io.IOException
- if an I/O error occursUnsupportedVariantTypeException
- if HPSF does not support some
variant type.public static int writeToStream(java.io.OutputStream out, double n) throws java.io.IOException
Writes a double value value to an output stream.
out
- The stream to write to.n
- The value to write.java.io.IOException
- if an I/O error occursCopyright 2018 The Apache Software Foundation or its licensors, as applicable.