public final class

LEDataInputStream

extends FilterInputStream
implements DataInput
java.lang.Object
   ↳ java.io.InputStream
     ↳ java.io.FilterInputStream
       ↳ com.pnfsoftware.jeb.util.io.LEDataInputStream

Class Overview

Little-endian version of a DataInputStream.

Summary

[Expand]
Inherited Fields
From class java.io.FilterInputStream
Public Constructors
LEDataInputStream(InputStream in)
Public Methods
void close()
int read(byte[] ba)
int read(byte[] ba, int off, int len)
boolean readBoolean()
byte readByte()
char readChar()
double readDouble()
float readFloat()
void readFully(byte[] ba)
void readFully(byte[] ba, int off, int len)
int readInt()
int readIntULEB128()
String readLine()
Danger: not portable! Uses local system encoding.
long readLong()
long readLongULEB128()
short readShort()
String readUTF()
int readUnsignedByte()
int readUnsignedShort()
int skipBytes(int n)
[Expand]
Inherited Methods
From class java.io.FilterInputStream
From class java.io.InputStream
From class java.lang.Object
From interface java.io.Closeable
From interface java.io.DataInput
From interface java.lang.AutoCloseable

Public Constructors

public LEDataInputStream (InputStream in)

Public Methods

public void close ()

Throws
IOException

public int read (byte[] ba)

Throws
IOException

public int read (byte[] ba, int off, int len)

Throws
IOException

public boolean readBoolean ()

Throws
IOException

public byte readByte ()

Throws
IOException

public char readChar ()

Throws
IOException

public double readDouble ()

Throws
IOException

public float readFloat ()

Throws
IOException

public void readFully (byte[] ba)

Throws
IOException

public void readFully (byte[] ba, int off, int len)

Throws
IOException

public int readInt ()

Throws
IOException

public int readIntULEB128 ()

Throws
IOException

public String readLine ()

Danger: not portable! Uses local system encoding.

Throws
IOException

public long readLong ()

Throws
IOException

public long readLongULEB128 ()

Throws
IOException

public short readShort ()

Throws
IOException

public String readUTF ()

Throws
IOException

public int readUnsignedByte ()

Throws
IOException

public int readUnsignedShort ()

Throws
IOException

public int skipBytes (int n)

Throws
IOException