net.simplace.util.io.endian.LittleEndianInputStream
public class LittleEndianInputStream extends java.io.FilterInputStream {
// Public Constructors
public LittleEndianInputStream(InputStream in);
// Public Instance Methods public boolean readBoolean() throws IOException;
public byte readByte(int b) throws IOException;
public int readUnsignedByte() throws IOException;
public short readShort() throws IOException;
public int readUnsignedShort() throws IOException;
public char readChar() throws IOException;
public int readInt() throws IOException;
public long readLong() throws IOException;
public String readUTF() throws IOException;
public final double readDouble() throws IOException;
public final float readFloat() throws IOException;
public final int skipBytes(int n) throws IOException;
}
Hierarchy: java.lang.Object - java.io.InputStream (java.io.Closeable) - java.io.FilterInputStream - LittleEndianInputStream