| |
|
| java.lang.Object com.vividsolutions.jump.io.EndianDataInputStream
EndianDataInputStream | public class EndianDataInputStream (Code) | | A class that gives most of the functionality of DataInputStream, but is endian aware.
Uses a real java.io.DataInputStream to actually do the writing.
|
readByteBE | public byte readByteBE() throws IOException(Code) | | read a byte in BigEndian - the same as LE because its only 1 byte
|
readByteLE | public byte readByteLE() throws IOException(Code) | | read a byte in LittleEndian - the same as BE because its only 1 byte
|
readByteLEnum | public void readByteLEnum(byte[] b) throws IOException(Code) | | read a byte in LittleEndian - the same as BE because its only 1 byte
|
readDoubleBE | public double readDoubleBE() throws IOException(Code) | | read a 64bit double in BE
|
readDoubleLE | public double readDoubleLE() throws IOException(Code) | | read a 64bit double in LE
|
readShortBE | public short readShortBE() throws IOException(Code) | | read a 16bit short in BE
|
readShortLE | public short readShortLE() throws IOException(Code) | | read a 16bit short in LE
|
readUnsignedByteBE | public int readUnsignedByteBE() throws IOException(Code) | | read a byte in BigEndian - the same as LE because its only 1 byte. returns int as per java.io.DataStream
|
readUnsignedByteLE | public int readUnsignedByteLE() throws IOException(Code) | | read a byte in LittleEndian - the same as BE because its only 1 byte. returns int as per java.io.DataStream
|
skipBytes | public int skipBytes(int num) throws IOException(Code) | | skip ahead in the stream
Parameters: num - number of bytes to read ahead |
|
|
|