graphenej/graphenej/src/main/java/cy/agorise/graphenej/interfaces/ByteSerializable.java

10 lines
211 B
Java

package cy.agorise.graphenej.interfaces;
/**
* Interface implemented by all entities for which makes sense to have a byte-array representation.
*/
public interface ByteSerializable {
byte[] toBytes();
}