Converts the specified Java object into a formatted data byte array. @param t the object to serialize @return the serialized byte array representing the specified object. @throws SerializationException if there is a problem converting the object to a byte array. @deprecated since 0.12.0 in favor of
(T t)
| 35 | * @deprecated since 0.12.0 in favor of {@link #serialize(Object, OutputStream)} |
| 36 | */ |
| 37 | @Deprecated |
| 38 | byte[] serialize(T t) throws SerializationException; |
| 39 | |
| 40 | /** |
no outgoing calls
no test coverage detected