Interface SaveBasedSerializable

All Superinterfaces:
Readable, Writable
All Known Subinterfaces:
SaveData

public interface SaveBasedSerializable extends Readable, Writable
  • Method Summary

    Modifier and Type
    Method
    Description
    Database name.
    Object ID.
    Table name.

    Methods inherited from interface dev.the_fireplace.lib.api.io.interfaces.Readable

    readFrom

    Methods inherited from interface dev.the_fireplace.lib.api.io.interfaces.Writable

    writeTo
  • Method Details

    • getDatabase

      String getDatabase()
      Database name. Required to match ^[a-zA-Z0-9_\-]+$ Dashes will be removed and capitals converted to lowercase.
    • getTable

      String getTable()
      Table name. Required to match ^[a-zA-Z0-9_\-]+$ Dashes will be removed and capitals converted to lowercase.
    • getId

      String getId()
      Object ID. Required to match ^[a-zA-Z0-9_\-]+$ Dashes will be removed and capitals converted to lowercase.