|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ArrayDataInput
Method Summary | |
---|---|
void |
close()
|
int |
read(boolean[] buf)
|
int |
read(boolean[] buf,
int offset,
int size)
|
int |
read(byte[] buf)
|
int |
read(byte[] buf,
int offset,
int size)
|
int |
read(char[] buf)
|
int |
read(char[] buf,
int offset,
int size)
|
int |
read(double[] buf)
|
int |
read(double[] buf,
int offset,
int size)
|
int |
read(float[] buf)
|
int |
read(float[] buf,
int offset,
int size)
|
int |
read(int[] buf)
|
int |
read(int[] buf,
int offset,
int size)
|
int |
read(long[] buf)
|
int |
read(long[] buf,
int offset,
int size)
|
int |
read(short[] buf)
|
int |
read(short[] buf,
int offset,
int size)
|
int |
readArray(java.lang.Object o)
Deprecated. See readLArray(Object o). |
long |
readLArray(java.lang.Object o)
Read an array. |
long |
skip(long distance)
|
long |
skipBytes(long toSkip)
|
Methods inherited from interface java.io.DataInput |
---|
readBoolean, readByte, readChar, readDouble, readFloat, readFully, readFully, readInt, readLine, readLong, readShort, readUnsignedByte, readUnsignedShort, readUTF, skipBytes |
Method Detail |
---|
int readArray(java.lang.Object o) throws java.io.IOException
The ArrayDataInput classes do not support String input since it is unclear how one would read in an Array of strings.
o
- A [multidimensional] primitive (or Object) array.
java.io.IOException
long readLArray(java.lang.Object o) throws java.io.IOException
java.io.IOException
int read(byte[] buf) throws java.io.IOException
java.io.IOException
int read(boolean[] buf) throws java.io.IOException
java.io.IOException
int read(short[] buf) throws java.io.IOException
java.io.IOException
int read(char[] buf) throws java.io.IOException
java.io.IOException
int read(int[] buf) throws java.io.IOException
java.io.IOException
int read(long[] buf) throws java.io.IOException
java.io.IOException
int read(float[] buf) throws java.io.IOException
java.io.IOException
int read(double[] buf) throws java.io.IOException
java.io.IOException
int read(byte[] buf, int offset, int size) throws java.io.IOException
java.io.IOException
int read(boolean[] buf, int offset, int size) throws java.io.IOException
java.io.IOException
int read(char[] buf, int offset, int size) throws java.io.IOException
java.io.IOException
int read(short[] buf, int offset, int size) throws java.io.IOException
java.io.IOException
int read(int[] buf, int offset, int size) throws java.io.IOException
java.io.IOException
int read(long[] buf, int offset, int size) throws java.io.IOException
java.io.IOException
int read(float[] buf, int offset, int size) throws java.io.IOException
java.io.IOException
int read(double[] buf, int offset, int size) throws java.io.IOException
java.io.IOException
long skip(long distance) throws java.io.IOException
java.io.IOException
long skipBytes(long toSkip) throws java.io.IOException
java.io.IOException
void close() throws java.io.IOException
java.io.IOException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |