|
JBoss Marshalling 1.3.0.CR9 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Unmarshaller
An unmarshaller which reads objects from a stream.
Method Summary | ||
---|---|---|
void |
clearClassCache()
Discard the class cache. |
|
void |
clearInstanceCache()
Discard the instance cache. |
|
void |
finish()
Finish unmarshalling from a stream. |
|
|
readObject(Class<T> type)
Read and return an object, cast to a specific type. |
|
Object |
readObjectUnshared()
Read and return an unshared object. |
|
|
readObjectUnshared(Class<T> type)
Read and return an unshared object, cast to a specific type. |
|
void |
start(ByteInput newInput)
Begin unmarshalling from a stream. |
Methods inherited from interface java.io.ObjectInput |
---|
available, close, read, read, read, readObject, skip |
Methods inherited from interface java.io.DataInput |
---|
readBoolean, readByte, readChar, readDouble, readFloat, readFully, readFully, readInt, readLine, readLong, readShort, readUnsignedByte, readUnsignedShort, readUTF, skipBytes |
Methods inherited from interface org.jboss.marshalling.ByteInput |
---|
available, read, read, read, skip |
Methods inherited from interface java.io.Closeable |
---|
close |
Method Detail |
---|
Object readObjectUnshared() throws ClassNotFoundException, IOException
ClassNotFoundException
- if the class of a serialized object cannot be found
IOException
- if an error occurs<T> T readObject(Class<T> type) throws ClassNotFoundException, IOException
T
- the object typetype
- the object class
ClassNotFoundException
- if the class of a serialized object cannot be found
InvalidObjectException
- if the object is not of the expected type
IOException
- if an error occurs<T> T readObjectUnshared(Class<T> type) throws ClassNotFoundException, IOException
T
- the object typetype
- the object class
ClassNotFoundException
- if the class of a serialized object cannot be found
InvalidObjectException
- if the object is not of the expected type
IOException
- if an error occursvoid start(ByteInput newInput) throws IOException
newInput
- the new stream
IOException
- if an error occurs during setup, such as an invalid headervoid clearInstanceCache() throws IOException
IOException
- if an error occursvoid clearClassCache() throws IOException
IOException
- if an error occursvoid finish() throws IOException
IOException
- if an error occurs
|
JBoss Marshalling 1.3.0.CR9 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |