public final class MarshallingObjectOutputStream extends ObjectOutputStream
Marshaller
, which may be used by legacy ObjectOutputStream
-based
applications that wish to use the marshalling framework.ObjectOutputStream.PutField
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
Modifier | Constructor and Description |
---|---|
protected |
MarshallingObjectOutputStream(Marshaller marshaller,
ByteOutput byteOutput)
Construct a new instance that delegates to the given marshaller.
|
Modifier and Type | Method and Description |
---|---|
protected void |
annotateClass(Class<?> cl) |
protected void |
annotateProxyClass(Class<?> cl) |
void |
close() |
void |
defaultWriteObject() |
protected void |
drain() |
protected boolean |
enableReplaceObject(boolean enable) |
void |
flush() |
ObjectOutputStream.PutField |
putFields() |
protected Object |
replaceObject(Object obj) |
void |
reset() |
void |
useProtocolVersion(int version) |
void |
write(byte[] buf) |
void |
write(byte[] buf,
int off,
int len) |
void |
write(int val) |
void |
writeBoolean(boolean val) |
void |
writeByte(int val) |
void |
writeBytes(String str) |
void |
writeChar(int val) |
void |
writeChars(String str) |
protected void |
writeClassDescriptor(ObjectStreamClass desc) |
void |
writeDouble(double val) |
void |
writeFields() |
void |
writeFloat(float val) |
void |
writeInt(int val) |
void |
writeLong(long val) |
protected void |
writeObjectOverride(Object obj) |
void |
writeShort(int val) |
protected void |
writeStreamHeader() |
void |
writeUnshared(Object obj) |
void |
writeUTF(String str) |
writeObject
protected MarshallingObjectOutputStream(Marshaller marshaller, ByteOutput byteOutput) throws IOException, SecurityException
marshaller
- the delegate marshallerIOException
- if an I/O error occursSecurityException
- if the caller does not have permission to construct an instance of this classprotected void writeObjectOverride(Object obj) throws IOException
writeObjectOverride
in class ObjectOutputStream
IOException
public void writeUnshared(Object obj) throws IOException
writeUnshared
in class ObjectOutputStream
IOException
public void write(int val) throws IOException
write
in interface DataOutput
write
in interface ObjectOutput
write
in class ObjectOutputStream
IOException
public void write(byte[] buf) throws IOException
write
in interface DataOutput
write
in interface ObjectOutput
write
in class ObjectOutputStream
IOException
public void write(byte[] buf, int off, int len) throws IOException
write
in interface DataOutput
write
in interface ObjectOutput
write
in class ObjectOutputStream
IOException
public void flush() throws IOException
flush
in interface Flushable
flush
in interface ObjectOutput
flush
in class ObjectOutputStream
IOException
public void writeBoolean(boolean val) throws IOException
writeBoolean
in interface DataOutput
writeBoolean
in class ObjectOutputStream
IOException
public void writeByte(int val) throws IOException
writeByte
in interface DataOutput
writeByte
in class ObjectOutputStream
IOException
public void writeShort(int val) throws IOException
writeShort
in interface DataOutput
writeShort
in class ObjectOutputStream
IOException
public void writeChar(int val) throws IOException
writeChar
in interface DataOutput
writeChar
in class ObjectOutputStream
IOException
public void writeInt(int val) throws IOException
writeInt
in interface DataOutput
writeInt
in class ObjectOutputStream
IOException
public void writeLong(long val) throws IOException
writeLong
in interface DataOutput
writeLong
in class ObjectOutputStream
IOException
public void writeFloat(float val) throws IOException
writeFloat
in interface DataOutput
writeFloat
in class ObjectOutputStream
IOException
public void writeDouble(double val) throws IOException
writeDouble
in interface DataOutput
writeDouble
in class ObjectOutputStream
IOException
public void writeBytes(String str) throws IOException
writeBytes
in interface DataOutput
writeBytes
in class ObjectOutputStream
IOException
public void writeChars(String str) throws IOException
writeChars
in interface DataOutput
writeChars
in class ObjectOutputStream
IOException
public void writeUTF(String str) throws IOException
writeUTF
in interface DataOutput
writeUTF
in class ObjectOutputStream
IOException
public final void reset() throws IOException
reset
in class ObjectOutputStream
IOException
public final void close() throws IOException
close
in interface Closeable
close
in interface ObjectOutput
close
in interface AutoCloseable
close
in class ObjectOutputStream
IOException
public final void useProtocolVersion(int version) throws IOException
useProtocolVersion
in class ObjectOutputStream
IOException
protected final void annotateClass(Class<?> cl) throws IOException
annotateClass
in class ObjectOutputStream
IOException
protected final void annotateProxyClass(Class<?> cl) throws IOException
annotateProxyClass
in class ObjectOutputStream
IOException
protected final Object replaceObject(Object obj) throws IOException
replaceObject
in class ObjectOutputStream
IOException
protected final boolean enableReplaceObject(boolean enable) throws SecurityException
enableReplaceObject
in class ObjectOutputStream
SecurityException
protected final void writeStreamHeader() throws IOException
writeStreamHeader
in class ObjectOutputStream
IOException
protected final void writeClassDescriptor(ObjectStreamClass desc) throws IOException
writeClassDescriptor
in class ObjectOutputStream
IOException
protected final void drain() throws IOException
drain
in class ObjectOutputStream
IOException
public void writeFields() throws IOException
writeFields
in class ObjectOutputStream
IOException
public ObjectOutputStream.PutField putFields() throws IOException
putFields
in class ObjectOutputStream
IOException
public void defaultWriteObject() throws IOException
defaultWriteObject
in class ObjectOutputStream
IOException
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.