| |
|
| java.lang.Object com.vividsolutions.jump.io.EndianDataOutputStream
EndianDataOutputStream | public class EndianDataOutputStream (Code) | | A class that gives most of the functionality of DataOutputStream, but is endian aware.
Uses a real java.io.DataOutputStream to actually do the writing.
|
write | public void write(byte[] b, int off, int len) throws IOException(Code) | | write bytes
|
writeByteBE | public void writeByteBE(int b) throws IOException(Code) | | write a byte in BigEndian - this is exactly the same as the LittleEndian version since there's no endian in a single byte
|
writeByteLE | public void writeByteLE(int b) throws IOException(Code) | | write a byte in LittleEndian - this is exactly the same as the BigEndian version since there's no endian in a single byte
|
writeBytesBE | public void writeBytesBE(String s) throws IOException(Code) | | write a set of bytes in BigEndian - this is exactly the same as the LittleEndian version since there's no endian in a single byte
|
writeBytesLE | public void writeBytesLE(String s) throws IOException(Code) | | write a set of bytes in LittleEndian - this is exactly the same as the BigEndian version since there's no endian in a single byte
|
writeDoubleBE | public void writeDoubleBE(double d) throws IOException(Code) | | write a 64bit double in BigEndian
|
writeDoubleLE | public void writeDoubleLE(double d) throws IOException(Code) | | write a 64bit double in LittleEndian
|
writeIntBE | public void writeIntBE(int i) throws IOException(Code) | | write a 32bit int in BigEndian
|
writeIntLE | public void writeIntLE(int i) throws IOException(Code) | | write a 32bit int in LittleEndian
|
writeLongBE | public void writeLongBE(long l) throws IOException(Code) | | write a 64bit long in BigEndian
|
writeLongLE | public void writeLongLE(long l) throws IOException(Code) | | write a 64bit long in LittleEndian
|
writeShortBE | public void writeShortBE(int s) throws IOException(Code) | | write a 16bit short in BigEndian
|
writeShortLE | public void writeShortLE(int s) throws IOException(Code) | | write a 16bit short in LittleEndian
|
|
|
|