All Downloads are FREE. Search and download functionalities are using the official Maven repository.

top.focess.util.serialize.FocessSerializable Maven / Gradle / Ivy

There is a newer version: 1.1.24
Show newest version
package top.focess.util.serialize;

import org.jetbrains.annotations.Nullable;

import java.io.Serializable;
import java.util.Map;

/**
 * Represents this class is a serializable class
 * 

* You should implement the deserialize method if you have implemented the serialize method (not return null). */ public interface FocessSerializable extends Serializable { /** * Serialize the object * * @return the serialized object, null if it should serialize all fields in the object. */ @Nullable default Map serialize() { return null; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy