|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.io.InputStream
java.io.FilterInputStream
com.sun.opengl.util.texture.spi.LEDataInputStream
public class LEDataInputStream
Little Endian Data Input Stream. This class implements an input stream filter to allow reading of java native datatypes from an input stream which has those native datatypes stored in a little endian byte order.
This is the sister class of the DataInputStream which allows for reading of java native datatypes from an input stream with the datatypes stored in big endian byte order.
This class implements the minimum required and calls DataInputStream for some of the required methods for DataInput.
Not all methods are implemented due to lack of immediatte requirement for that functionality. It is not clear if it is ever going to be functionally required to be able to read UTF data in a LittleEndianManner
| Field Summary |
|---|
| Fields inherited from class java.io.FilterInputStream |
|---|
in |
| Constructor Summary | |
|---|---|
LEDataInputStream(InputStream in)
|
|
| Method Summary | |
|---|---|
void |
close()
|
int |
read(byte[] b)
|
int |
read(byte[] b,
int off,
int len)
|
boolean |
readBoolean()
|
byte |
readByte()
|
char |
readChar()
|
double |
readDouble()
|
float |
readFloat()
|
void |
readFully(byte[] b)
|
void |
readFully(byte[] b,
int off,
int len)
|
int |
readInt()
|
String |
readLine()
dont call this it is not implemented. |
long |
readLong()
|
short |
readShort()
|
int |
readUnsignedByte()
|
int |
readUnsignedShort()
|
String |
readUTF()
dont call this it is not implemented |
static String |
readUTF(DataInput in)
dont call this it is not implemented |
int |
skipBytes(int n)
|
| Methods inherited from class java.io.FilterInputStream |
|---|
available, mark, markSupported, read, reset, skip |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public LEDataInputStream(InputStream in)
| Method Detail |
|---|
public void close()
throws IOException
close in interface Closeableclose in class FilterInputStreamIOException
public final int read(byte[] b)
throws IOException
read in class FilterInputStreamIOException
public final int read(byte[] b,
int off,
int len)
throws IOException
read in class FilterInputStreamIOException
public final void readFully(byte[] b)
throws IOException
readFully in interface DataInputIOException
public final void readFully(byte[] b,
int off,
int len)
throws IOException
readFully in interface DataInputIOException
public final int skipBytes(int n)
throws IOException
skipBytes in interface DataInputIOException
public final boolean readBoolean()
throws IOException
readBoolean in interface DataInputIOException
public final byte readByte()
throws IOException
readByte in interface DataInputIOException
public final int readUnsignedByte()
throws IOException
readUnsignedByte in interface DataInputIOException
public final short readShort()
throws IOException
readShort in interface DataInputIOException
public final int readUnsignedShort()
throws IOException
readUnsignedShort in interface DataInputIOException
public final char readChar()
throws IOException
readChar in interface DataInputIOException
public final int readInt()
throws IOException
readInt in interface DataInputIOException
public final long readLong()
throws IOException
readLong in interface DataInputIOException
public final float readFloat()
throws IOException
readFloat in interface DataInputIOException
public final double readDouble()
throws IOException
readDouble in interface DataInputIOException
public final String readLine()
throws IOException
readLine in interface DataInputIOException
public final String readUTF()
throws IOException
readUTF in interface DataInputIOException
public static final String readUTF(DataInput in)
throws IOException
IOException
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||