Class LocationPersister

java.lang.Object
net.citizensnpcs.api.persistence.LocationPersister
All Implemented Interfaces:
Persister<Location>

public class LocationPersister extends Object implements Persister<Location>
  • Constructor Details

    • LocationPersister

      public LocationPersister()
  • Method Details

    • create

      public Location 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<Location>
      Parameters:
      root - The root key to load from
      Returns:
      The created instance, or null if no data was present
    • save

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