Class UUIDPersister

java.lang.Object
net.citizensnpcs.api.persistence.UUIDPersister
All Implemented Interfaces:
Persister<UUID>

public class UUIDPersister extends Object implements Persister<UUID>
  • Constructor Details

    • UUIDPersister

      public UUIDPersister()
  • Method Details

    • create

      public UUID create(DataKey root)
      Description copied from interface: Persister
      Creates an object instance from the given DataKey. Should not return null unless no data is present.
      Specified by:
      create in interface Persister<UUID>
      Parameters:
      root - The root key to load from
      Returns:
      The created instance, or null if no data was present
    • save

      public void save(UUID instance, DataKey root)
      Description copied from interface: Persister
      Saves the object instance to the given DataKey.
      Specified by:
      save in interface Persister<UUID>
      Parameters:
      instance - The object instance to save
      root - The key to save into