|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.io.OutputStream
java.io.ObjectOutputStream
org.apache.wicket.util.io.WicketObjectOutputStream
public final class WicketObjectOutputStream
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class java.io.ObjectOutputStream |
|---|
java.io.ObjectOutputStream.PutField |
| Field Summary |
|---|
| Fields inherited from interface java.io.ObjectStreamConstants |
|---|
baseWireHandle, PROTOCOL_VERSION_1, PROTOCOL_VERSION_2, SC_BLOCK_DATA, SC_ENUM, SC_EXTERNALIZABLE, SC_SERIALIZABLE, SC_WRITE_METHOD, STREAM_MAGIC, STREAM_VERSION, SUBCLASS_IMPLEMENTATION_PERMISSION, SUBSTITUTION_PERMISSION, TC_ARRAY, TC_BASE, TC_BLOCKDATA, TC_BLOCKDATALONG, TC_CLASS, TC_CLASSDESC, TC_ENDBLOCKDATA, TC_ENUM, TC_EXCEPTION, TC_LONGSTRING, TC_MAX, TC_NULL, TC_OBJECT, TC_PROXYCLASSDESC, TC_REFERENCE, TC_RESET, TC_STRING |
| Constructor Summary | |
|---|---|
WicketObjectOutputStream(java.io.OutputStream out)
Construct. |
|
| Method Summary | |
|---|---|
void |
close()
|
void |
defaultWriteObject()
|
java.io.ObjectOutputStream.PutField |
putFields()
|
void |
write(byte[] buf)
|
void |
write(byte[] buf,
int off,
int len)
|
void |
write(int val)
|
void |
writeBoolean(boolean val)
Writes a boolean. |
void |
writeByte(int val)
Writes an 8 bit byte. |
void |
writeBytes(java.lang.String str)
Writes a String as a sequence of bytes. |
void |
writeChar(int val)
Writes a 16 bit char. |
void |
writeChars(java.lang.String str)
Writes a String as a sequence of chars. |
void |
writeDouble(double val)
Writes a 64 bit double. |
void |
writeFields()
|
void |
writeFloat(float val)
Writes a 32 bit float. |
void |
writeInt(int val)
Writes a 32 bit int. |
void |
writeLong(long val)
Writes a 64 bit long. |
protected void |
writeObjectOverride(java.lang.Object obj)
|
void |
writeShort(int val)
Writes a 16 bit short. |
void |
writeUTF(java.lang.String str)
|
| Methods inherited from class java.io.ObjectOutputStream |
|---|
annotateClass, annotateProxyClass, drain, enableReplaceObject, flush, replaceObject, reset, useProtocolVersion, writeClassDescriptor, writeObject, writeStreamHeader, writeUnshared |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public WicketObjectOutputStream(java.io.OutputStream out)
throws java.io.IOException
out -
java.io.IOException| Method Detail |
|---|
public void close()
throws java.io.IOException
close in interface java.io.Closeableclose in interface java.io.ObjectOutputclose in class java.io.ObjectOutputStreamjava.io.IOExceptionObjectOutputStream.close()
public void defaultWriteObject()
throws java.io.IOException
defaultWriteObject in class java.io.ObjectOutputStreamjava.io.IOExceptionObjectOutputStream.defaultWriteObject()
public java.io.ObjectOutputStream.PutField putFields()
throws java.io.IOException
putFields in class java.io.ObjectOutputStreamjava.io.IOExceptionObjectOutputStream.putFields()
public void write(byte[] buf)
throws java.io.IOException
write in interface java.io.DataOutputwrite in interface java.io.ObjectOutputwrite in class java.io.ObjectOutputStreamjava.io.IOExceptionObjectOutputStream.write(byte[])
public void write(byte[] buf,
int off,
int len)
throws java.io.IOException
write in interface java.io.DataOutputwrite in interface java.io.ObjectOutputwrite in class java.io.ObjectOutputStreamjava.io.IOExceptionObjectOutputStream.write(byte[], int, int)
public void write(int val)
throws java.io.IOException
write in interface java.io.DataOutputwrite in interface java.io.ObjectOutputwrite in class java.io.ObjectOutputStreamjava.io.IOExceptionObjectOutputStream.write(int)
public void writeBoolean(boolean val)
throws java.io.IOException
writeBoolean in interface java.io.DataOutputwriteBoolean in class java.io.ObjectOutputStreamval - the boolean to be written
java.io.IOException - if I/O errors occur while writing to the underlying stream
public void writeByte(int val)
throws java.io.IOException
writeByte in interface java.io.DataOutputwriteByte in class java.io.ObjectOutputStreamval - the byte value to be written
java.io.IOException - if I/O errors occur while writing to the underlying stream
public void writeBytes(java.lang.String str)
throws java.io.IOException
writeBytes in interface java.io.DataOutputwriteBytes in class java.io.ObjectOutputStreamstr - the String of bytes to be written
java.io.IOException - if I/O errors occur while writing to the underlying stream
public void writeChar(int val)
throws java.io.IOException
writeChar in interface java.io.DataOutputwriteChar in class java.io.ObjectOutputStreamval - the char value to be written
java.io.IOException - if I/O errors occur while writing to the underlying stream
public void writeChars(java.lang.String str)
throws java.io.IOException
writeChars in interface java.io.DataOutputwriteChars in class java.io.ObjectOutputStreamstr - the String of chars to be written
java.io.IOException - if I/O errors occur while writing to the underlying stream
public void writeDouble(double val)
throws java.io.IOException
writeDouble in interface java.io.DataOutputwriteDouble in class java.io.ObjectOutputStreamval - the double value to be written
java.io.IOException - if I/O errors occur while writing to the underlying stream
public void writeFields()
throws java.io.IOException
writeFields in class java.io.ObjectOutputStreamjava.io.IOExceptionObjectOutputStream.writeFields()
public void writeFloat(float val)
throws java.io.IOException
writeFloat in interface java.io.DataOutputwriteFloat in class java.io.ObjectOutputStreamval - the float value to be written
java.io.IOException - if I/O errors occur while writing to the underlying stream
public void writeInt(int val)
throws java.io.IOException
writeInt in interface java.io.DataOutputwriteInt in class java.io.ObjectOutputStreamval - the integer value to be written
java.io.IOException - if I/O errors occur while writing to the underlying stream
public void writeLong(long val)
throws java.io.IOException
writeLong in interface java.io.DataOutputwriteLong in class java.io.ObjectOutputStreamval - the long value to be written
java.io.IOException - if I/O errors occur while writing to the underlying stream
public void writeShort(int val)
throws java.io.IOException
writeShort in interface java.io.DataOutputwriteShort in class java.io.ObjectOutputStreamval - the short value to be written
java.io.IOException - if I/O errors occur while writing to the underlying stream
public void writeUTF(java.lang.String str)
throws java.io.IOException
writeUTF in interface java.io.DataOutputwriteUTF in class java.io.ObjectOutputStreamjava.io.IOExceptionObjectOutputStream.writeUTF(java.lang.String)
protected final void writeObjectOverride(java.lang.Object obj)
throws java.io.IOException
writeObjectOverride in class java.io.ObjectOutputStreamjava.io.IOExceptionObjectOutputStream.writeObjectOverride(java.lang.Object)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||