Interface SerializablePersistentData<T>

Type Parameters:
T - The original type of data. Must be specified to deserialize the data afterwards.
All Superinterfaces:
Serializable
All Known Implementing Classes:
AbstractPersistentData, PersistentData

public interface SerializablePersistentData<T> extends Serializable
A class that represents special type of persistent data, that can be stored by serializing it.
  • Method Summary

    Modifier and Type
    Method
    Description
    Serializes data to map, using the same way found in: ConfigurationSerializable.
  • Method Details

    • serialize

      Map<String,Serializable> serialize()
      Serializes data to map, using the same way found in: ConfigurationSerializable.
      Returns:
      A map with all the data.