public class MarshallerObjectOutput extends Object implements ObjectOutput
Marshaller
implementation while throwing
an exception if close()
is called.
This class is not part of the marshalling API; rather it is intended for marshaller implementors to make it easier to develop Java serialization-compatible marshallers.
Constructor and Description |
---|
MarshallerObjectOutput(Marshaller marshaller)
Construct a new instance.
|
Modifier and Type | Method and Description |
---|---|
void |
close()
This implementation always throws an
IllegalStateException . |
void |
flush() |
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(String s) |
void |
writeChar(int v) |
void |
writeChars(String s) |
void |
writeDouble(double v) |
void |
writeFloat(float v) |
void |
writeInt(int v) |
void |
writeLong(long v) |
void |
writeObject(Object obj) |
void |
writeShort(int v) |
void |
writeUTF(String s) |
public MarshallerObjectOutput(Marshaller marshaller)
marshaller
- the marshaller to delegate topublic void writeObject(Object obj) throws IOException
writeObject
in interface ObjectOutput
IOException
public void write(int b) throws IOException
write
in interface DataOutput
write
in interface ObjectOutput
IOException
public void write(byte[] b) throws IOException
write
in interface DataOutput
write
in interface ObjectOutput
IOException
public void write(byte[] b, int off, int len) throws IOException
write
in interface DataOutput
write
in interface ObjectOutput
IOException
public void flush() throws IOException
flush
in interface ObjectOutput
IOException
public void close() throws IOException
IllegalStateException
.close
in interface ObjectOutput
close
in interface AutoCloseable
IOException
public void writeBoolean(boolean v) throws IOException
writeBoolean
in interface DataOutput
IOException
public void writeByte(int v) throws IOException
writeByte
in interface DataOutput
IOException
public void writeShort(int v) throws IOException
writeShort
in interface DataOutput
IOException
public void writeChar(int v) throws IOException
writeChar
in interface DataOutput
IOException
public void writeInt(int v) throws IOException
writeInt
in interface DataOutput
IOException
public void writeLong(long v) throws IOException
writeLong
in interface DataOutput
IOException
public void writeFloat(float v) throws IOException
writeFloat
in interface DataOutput
IOException
public void writeDouble(double v) throws IOException
writeDouble
in interface DataOutput
IOException
public void writeBytes(String s) throws IOException
writeBytes
in interface DataOutput
IOException
public void writeChars(String s) throws IOException
writeChars
in interface DataOutput
IOException
public void writeUTF(String s) throws IOException
writeUTF
in interface DataOutput
IOException
Copyright © 2019 JBoss by Red Hat. All rights reserved.