public abstract class MarshallerObjectOutputStream extends ObjectOutputStream implements ByteOutput
Serializable
.
This class is not part of the marshalling API; rather it is intended for marshaller implementers to make it easier to develop Java serialization-compatible marshallers.
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 |
MarshallerObjectOutputStream(Marshaller output)
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() |
abstract void |
defaultWriteObject() |
protected void |
drain() |
protected boolean |
enableReplaceObject(boolean enable) |
void |
flush() |
abstract ObjectOutputStream.PutField |
putFields() |
protected Object |
replaceObject(Object obj) |
void |
reset() |
void |
useProtocolVersion(int version) |
void |
write(byte[] buf)
Write all the bytes from the given array to the stream.
|
void |
write(byte[] buf,
int off,
int len)
Write some of the bytes from the given array to the stream.
|
void |
write(int val)
Writes to the output stream the eight low-order bits of the argument
b . |
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) |
abstract 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 MarshallerObjectOutputStream(Marshaller output) throws IOException, SecurityException
output
- 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
b
. The 24 high-order bits of
b
are ignored.write
in interface DataOutput
write
in interface ObjectOutput
write
in interface ByteOutput
write
in class ObjectOutputStream
val
- the byte to writeIOException
- if an error occurspublic void write(byte[] buf) throws IOException
write
in interface DataOutput
write
in interface ObjectOutput
write
in interface ByteOutput
write
in class ObjectOutputStream
buf
- the byte arrayIOException
- if an error occurspublic void write(byte[] buf, int off, int len) throws IOException
write
in interface DataOutput
write
in interface ObjectOutput
write
in interface ByteOutput
write
in class ObjectOutputStream
buf
- the byte arrayoff
- the index to start writing fromlen
- the number of bytes to writeIOException
- if an error occurspublic 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 abstract void writeFields() throws IOException
writeFields
in class ObjectOutputStream
IOException
public abstract ObjectOutputStream.PutField putFields() throws IOException
putFields
in class ObjectOutputStream
IOException
public abstract void defaultWriteObject() throws IOException
defaultWriteObject
in class ObjectOutputStream
IOException
Copyright © 2019 JBoss by Red Hat. All rights reserved.