|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface ArrayOutput
An interface for writing arrays of primitive values to a binary stream.
This interfaces extends the standard interface DataOutput.
It adds methods for writing arrays of primitive values.
| Method Summary | |
|---|---|
void |
write(byte[] b)
|
void |
write(byte[] b,
int off,
int len)
|
void |
write(int b)
|
void |
writeBoolean(boolean v)
|
void |
writeByte(int v)
|
void |
writeBytes(byte[] v)
Writes byte elements from a specified array. |
void |
writeBytes(byte[][] v)
Writes byte elements from a specified array. |
void |
writeBytes(byte[][][] v)
Writes byte elements from a specified array. |
void |
writeBytes(byte[] v,
int k,
int n)
Writes byte elements from a specified array. |
void |
writeBytes(java.lang.String s)
|
void |
writeChar(int v)
|
void |
writeChars(char[] v)
Writes char elements from a specified array. |
void |
writeChars(char[][] v)
Writes char elements from a specified array. |
void |
writeChars(char[][][] v)
Writes char elements from a specified array. |
void |
writeChars(char[] v,
int k,
int n)
Writes char elements from a specified array. |
void |
writeChars(java.lang.String s)
|
void |
writeDouble(double v)
|
void |
writeDoubles(double[] v)
Writes double elements from a specified array. |
void |
writeDoubles(double[][] v)
Writes double elements from a specified array. |
void |
writeDoubles(double[][][] v)
Writes double elements from a specified array. |
void |
writeDoubles(double[] v,
int k,
int n)
Writes double elements from a specified array. |
void |
writeFloat(float v)
|
void |
writeFloats(float[] v)
Writes float elements from a specified array. |
void |
writeFloats(float[][] v)
Writes float elements from a specified array. |
void |
writeFloats(float[][][] v)
Writes float elements from a specified array. |
void |
writeFloats(float[] v,
int k,
int n)
Writes float elements from a specified array. |
void |
writeInt(int v)
|
void |
writeInts(int[] v)
Writes int elements from a specified array. |
void |
writeInts(int[][] v)
Writes int elements from a specified array. |
void |
writeInts(int[][][] v)
Writes int elements from a specified array. |
void |
writeInts(int[] v,
int k,
int n)
Writes int elements from a specified array. |
void |
writeLong(long v)
|
void |
writeLongs(long[] v)
Writes long elements from a specified array. |
void |
writeLongs(long[][] v)
Writes long elements from a specified array. |
void |
writeLongs(long[][][] v)
Writes long elements from a specified array. |
void |
writeLongs(long[] v,
int k,
int n)
Writes long elements from a specified array. |
void |
writeShort(int v)
|
void |
writeShorts(short[] v)
Writes shorts elements from a specified array. |
void |
writeShorts(short[][] v)
Writes short elements from a specified array. |
void |
writeShorts(short[][][] v)
Writes short elements from a specified array. |
void |
writeShorts(short[] v,
int k,
int n)
Writes short elements from a specified array. |
void |
writeUTF(java.lang.String s)
|
| Method Detail |
|---|
void write(int b)
throws java.io.IOException
write in interface java.io.DataOutputjava.io.IOException
void write(byte[] b)
throws java.io.IOException
write in interface java.io.DataOutputjava.io.IOException
void write(byte[] b,
int off,
int len)
throws java.io.IOException
write in interface java.io.DataOutputjava.io.IOException
void writeBoolean(boolean v)
throws java.io.IOException
writeBoolean in interface java.io.DataOutputjava.io.IOException
void writeByte(int v)
throws java.io.IOException
writeByte in interface java.io.DataOutputjava.io.IOException
void writeShort(int v)
throws java.io.IOException
writeShort in interface java.io.DataOutputjava.io.IOException
void writeChar(int v)
throws java.io.IOException
writeChar in interface java.io.DataOutputjava.io.IOException
void writeInt(int v)
throws java.io.IOException
writeInt in interface java.io.DataOutputjava.io.IOException
void writeLong(long v)
throws java.io.IOException
writeLong in interface java.io.DataOutputjava.io.IOException
void writeFloat(float v)
throws java.io.IOException
writeFloat in interface java.io.DataOutputjava.io.IOException
void writeDouble(double v)
throws java.io.IOException
writeDouble in interface java.io.DataOutputjava.io.IOException
void writeBytes(java.lang.String s)
throws java.io.IOException
writeBytes in interface java.io.DataOutputjava.io.IOException
void writeChars(java.lang.String s)
throws java.io.IOException
writeChars in interface java.io.DataOutputjava.io.IOException
void writeUTF(java.lang.String s)
throws java.io.IOException
writeUTF in interface java.io.DataOutputjava.io.IOException
void writeBytes(byte[] v,
int k,
int n)
throws java.io.IOException
v - the array.k - the index of the first element to write.n - the number of elements to write.
java.io.IOException
void writeBytes(byte[] v)
throws java.io.IOException
v - the array.
java.io.IOException
void writeBytes(byte[][] v)
throws java.io.IOException
v - the array.
java.io.IOException
void writeBytes(byte[][][] v)
throws java.io.IOException
v - the array.
java.io.IOException
void writeChars(char[] v,
int k,
int n)
throws java.io.IOException
v - the array.k - the index of the first element to write.n - the number of elements to write.
java.io.IOException
void writeChars(char[] v)
throws java.io.IOException
v - the array.
java.io.IOException
void writeChars(char[][] v)
throws java.io.IOException
v - the array.
java.io.IOException
void writeChars(char[][][] v)
throws java.io.IOException
v - the array.
java.io.IOException
void writeShorts(short[] v,
int k,
int n)
throws java.io.IOException
v - the array.k - the index of the first element to write.n - the number of elements to write.
java.io.IOException
void writeShorts(short[] v)
throws java.io.IOException
v - the array.
java.io.IOException
void writeShorts(short[][] v)
throws java.io.IOException
v - the array.
java.io.IOException
void writeShorts(short[][][] v)
throws java.io.IOException
v - the array.
java.io.IOException
void writeInts(int[] v,
int k,
int n)
throws java.io.IOException
v - the array.k - the index of the first element to write.n - the number of elements to write.
java.io.IOException
void writeInts(int[] v)
throws java.io.IOException
v - the array.
java.io.IOException
void writeInts(int[][] v)
throws java.io.IOException
v - the array.
java.io.IOException
void writeInts(int[][][] v)
throws java.io.IOException
v - the array.
java.io.IOException
void writeLongs(long[] v,
int k,
int n)
throws java.io.IOException
v - the array.k - the index of the first element to write.n - the number of elements to write.
java.io.IOException
void writeLongs(long[] v)
throws java.io.IOException
v - the array.
java.io.IOException
void writeLongs(long[][] v)
throws java.io.IOException
v - the array.
java.io.IOException
void writeLongs(long[][][] v)
throws java.io.IOException
v - the array.
java.io.IOException
void writeFloats(float[] v,
int k,
int n)
throws java.io.IOException
v - the array.k - the index of the first element to write.n - the number of elements to write.
java.io.IOException
void writeFloats(float[] v)
throws java.io.IOException
v - the array.
java.io.IOException
void writeFloats(float[][] v)
throws java.io.IOException
v - the array.
java.io.IOException
void writeFloats(float[][][] v)
throws java.io.IOException
v - the array.
java.io.IOException
void writeDoubles(double[] v,
int k,
int n)
throws java.io.IOException
v - the array.k - the index of the first element to write.n - the number of elements to write.
java.io.IOException
void writeDoubles(double[] v)
throws java.io.IOException
v - the array.
java.io.IOException
void writeDoubles(double[][] v)
throws java.io.IOException
v - the array.
java.io.IOException
void writeDoubles(double[][][] v)
throws java.io.IOException
v - the array.
java.io.IOException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||