Package net.citizensnpcs.api.persistence
Class PotionEffectPersister
java.lang.Object
net.citizensnpcs.api.persistence.PotionEffectPersister
- All Implemented Interfaces:
Persister<PotionEffect>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionCreates an object instance from the givenDataKey
.void
save
(PotionEffect effect, DataKey root) Saves the object instance to the givenDataKey
.
-
Constructor Details
-
PotionEffectPersister
public PotionEffectPersister()
-
-
Method Details
-
create
Description copied from interface:Persister
Creates an object instance from the givenDataKey
. Should not return null unless no data is present.- Specified by:
create
in interfacePersister<PotionEffect>
- Parameters:
root
- The root key to load from- Returns:
- The created instance, or null if no data was present
-
save
Description copied from interface:Persister
Saves the object instance to the givenDataKey
.- Specified by:
save
in interfacePersister<PotionEffect>
- Parameters:
effect
- The object instance to saveroot
- The key to save into
-