public interface ISerializationConverter
| Modifier and Type | Method and Description |
|---|---|
Object |
readConvertedObject(ObjectInputStream aOIS)
Read the object from the specified
ObjectInputStream. |
void |
writeConvertedObject(Object aSourceObject,
ObjectOutputStream aOOS)
Write the passed source object to the passed
ObjectOutputStream. |
void writeConvertedObject(@Nonnull Object aSourceObject, @Nonnull ObjectOutputStream aOOS) throws IOException
ObjectOutputStream.aSourceObject - The source object to write. Never null.aOOS - The output stream to write to. Never null.IOException - In case of a stream error@Nonnull Object readConvertedObject(@Nonnull ObjectInputStream aOIS) throws IOException
ObjectInputStream.aOIS - The object input stream to read from. Never null.null.IOException - In case of a stream errorCopyright © 2014–2015 Philip Helger. All rights reserved.