|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.io.OutputStream
org.axiondb.util.DataOutputOutputStream
public class DataOutputOutputStream
An OutputStream
wrapping a DataOutput
stream.
Constructor Summary | |
---|---|
DataOutputOutputStream(DataOutput out)
Create an OutputStream wrapping the given DataOutput . |
Method Summary | |
---|---|
void |
close()
Close me and free any associated resources. |
void |
flush()
Flush any buffered bytes. |
void |
write(byte[] b)
Write the given byte array. |
void |
write(byte[] b,
int off,
int len)
Write the specified sub-array of the given byte array. |
void |
write(int b)
Write the given byte. |
void |
writeBoolean(boolean v)
Write the given value. |
void |
writeByte(int v)
Write the given value. |
void |
writeBytes(String s)
Write the given value. |
void |
writeChar(int v)
Write the given value. |
void |
writeChars(String s)
Write the given value. |
void |
writeDouble(double v)
Write the given value. |
void |
writeFloat(float v)
Write the given value. |
void |
writeInt(int v)
Write the given value. |
void |
writeLong(long v)
Write the given value. |
void |
writeShort(int v)
Write the given value. |
void |
writeUTF(String str)
Write the given value. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public DataOutputOutputStream(DataOutput out)
OutputStream
wrapping the given DataOutput
.
Method Detail |
---|
public void close() throws IOException
close
in interface Closeable
close
in class OutputStream
IOException
public void write(int b) throws IOException
write
in interface DataOutput
write
in class OutputStream
IOException
DataOutput.write(int)
public void write(byte[] b) throws IOException
write
in interface DataOutput
write
in class OutputStream
IOException
DataOutput.write(byte[])
public void write(byte[] b, int off, int len) throws IOException
write
in interface DataOutput
write
in class OutputStream
IOException
DataOutput.write(byte[],int,int)
public void flush() throws IOException
flush
in interface Flushable
flush
in class OutputStream
IOException
public void writeBoolean(boolean v) throws IOException
writeBoolean
in interface DataOutput
IOException
DataOutput.writeBoolean(boolean)
public void writeByte(int v) throws IOException
writeByte
in interface DataOutput
IOException
DataOutput.writeByte(int)
public void writeBytes(String s) throws IOException
writeBytes
in interface DataOutput
IOException
DataOutput.writeBytes(java.lang.String)
public void writeChar(int v) throws IOException
writeChar
in interface DataOutput
IOException
DataOutput.writeChar(int)
public void writeChars(String s) throws IOException
writeChars
in interface DataOutput
IOException
DataOutput.writeChars(java.lang.String)
public void writeDouble(double v) throws IOException
writeDouble
in interface DataOutput
IOException
DataOutput.writeDouble(double)
public void writeFloat(float v) throws IOException
writeFloat
in interface DataOutput
IOException
DataOutput.writeFloat(float)
public void writeInt(int v) throws IOException
writeInt
in interface DataOutput
IOException
DataOutput.writeInt(int)
public void writeLong(long v) throws IOException
writeLong
in interface DataOutput
IOException
DataOutput.writeLong(long)
public void writeShort(int v) throws IOException
writeShort
in interface DataOutput
IOException
DataOutput.writeShort(int)
public void writeUTF(String str) throws IOException
writeUTF
in interface DataOutput
IOException
DataOutput.writeUTF(java.lang.String)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |