Class VectorPersister

java.lang.Object
net.citizensnpcs.api.persistence.VectorPersister
All Implemented Interfaces:
Persister<Vector>

public class VectorPersister extends Object implements Persister<Vector>
  • Constructor Details

    • VectorPersister

      public VectorPersister()
  • Method Details

    • create

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

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