Record Class WorldSpecificHeartDropRestriction
java.lang.Object
java.lang.Record
dev.chicoferreira.lifestealer.restriction.restrictions.WorldSpecificHeartDropRestriction
- All Implemented Interfaces:
LifestealerHeartDropRestriction
@ConfigSerializable
public record WorldSpecificHeartDropRestriction(String worldName)
extends Record
implements LifestealerHeartDropRestriction
Represents a restriction based on the player's current world name
-
Constructor Summary
ConstructorsConstructorDescriptionWorldSpecificHeartDropRestriction(String worldName) Creates an instance of aWorldSpecificHeartDropRestrictionrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanshouldRestrictHeartDrop(@NotNull org.bukkit.entity.Player player, @NotNull LifestealerUser user, @NotNull org.bukkit.event.entity.PlayerDeathEvent event) Checks if this restriction applies to the playerfinal StringtoString()Returns a string representation of this record class.Returns the value of theworldNamerecord component.
-
Constructor Details
-
WorldSpecificHeartDropRestriction
Creates an instance of aWorldSpecificHeartDropRestrictionrecord class.- Parameters:
worldName- the value for theworldNamerecord component
-
-
Method Details
-
shouldRestrictHeartDrop
public boolean shouldRestrictHeartDrop(@NotNull @NotNull org.bukkit.entity.Player player, @NotNull @NotNull LifestealerUser user, @NotNull @NotNull org.bukkit.event.entity.PlayerDeathEvent event) Description copied from interface:LifestealerHeartDropRestrictionChecks if this restriction applies to the player- Specified by:
shouldRestrictHeartDropin interfaceLifestealerHeartDropRestriction- Parameters:
player- the player that dieduser- the user related to the playerevent- the death event- Returns:
- if this restriction applies to the player
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
worldName
Returns the value of theworldNamerecord component.- Returns:
- the value of the
worldNamerecord component
-