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 aWorldSpecificHeartDropRestriction
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.boolean
shouldRestrictHeartDrop
(@NotNull org.bukkit.entity.Player player, @NotNull LifestealerUser user, @NotNull org.bukkit.event.entity.PlayerDeathEvent event) Checks if this restriction applies to the playerfinal String
toString()
Returns a string representation of this record class.Returns the value of theworldName
record component.
-
Constructor Details
-
WorldSpecificHeartDropRestriction
Creates an instance of aWorldSpecificHeartDropRestriction
record class.- Parameters:
worldName
- the value for theworldName
record 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:LifestealerHeartDropRestriction
Checks if this restriction applies to the player- Specified by:
shouldRestrictHeartDrop
in 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 theworldName
record component.- Returns:
- the value of the
worldName
record component
-