|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectjava.io.InputStream
java.io.FilterInputStream
java.io.DataInputStream
edu.psu.geovista.db.dbase.GvDataInputStream
GvDataInputStream reads from a DataInputStream
DataInputStream| Field Summary |
| Fields inherited from class java.io.FilterInputStream |
in |
| Constructor Summary | |
GvDataInputStream(java.io.InputStream in)
Construct a newly created GvDataInputStream |
|
| Method Summary | |
char |
readCharLE()
|
double |
readDoubleLE()
|
float |
readFloatLE()
|
int |
readIntLE()
|
long |
readLongLE()
|
short |
readShortLE()
reads a short. |
| Methods inherited from class java.io.DataInputStream |
read, read, readBoolean, readByte, readChar, readDouble, readFloat, readFully, readFully, readInt, readLine, readLong, readShort, readUnsignedByte, readUnsignedShort, readUTF, readUTF, skipBytes |
| Methods inherited from class java.io.FilterInputStream |
available, close, 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 GvDataInputStream(java.io.InputStream in)
in - An InputStream.| Method Detail |
public final short readShortLE()
throws java.io.IOException
readFully(c, 0, 2) is probably faster and use less memory than int ch1 = read(); int ch2 = read(); return (short)((ch2 << 8) + (ch1 << 0));
java.io.IOException
public final char readCharLE()
throws java.io.IOException
java.io.IOException
public int readIntLE()
throws java.io.IOException
java.io.IOException
public long readLongLE()
throws java.io.IOException
java.io.IOException
public float readFloatLE()
throws java.io.IOException
java.io.IOException
public double readDoubleLE()
throws java.io.IOException
java.io.IOException
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||