public interface ROPSerializationService
| Modifier and Type | Method and Description | 
|---|---|
| <T> T | deserialize(byte[] serializedObject,
           Class<T> objectClass) | 
| <T> T | deserialize(InputStream inputStream,
           Class<T> objectClass) | 
| byte[] | serialize(Object object) | 
| void | serialize(Object object,
         OutputStream outputStream) | 
byte[] serialize(Object object) throws IOException
IOExceptionvoid serialize(Object object, OutputStream outputStream) throws IOException
IOException<T> T deserialize(InputStream inputStream, Class<T> objectClass) throws IOException
IOException<T> T deserialize(byte[] serializedObject,
                  Class<T> objectClass)
           throws IOException
IOExceptionCopyright © 2001–2023 Apache Cayenne. All rights reserved.