Record Class DamageCauseHeartDropRestriction
java.lang.Object
java.lang.Record
dev.chicoferreira.lifestealer.restriction.restrictions.DamageCauseHeartDropRestriction
- All Implemented Interfaces:
LifestealerHeartDropRestriction
@ConfigSerializable
public record DamageCauseHeartDropRestriction(org.bukkit.event.entity.EntityDamageEvent.DamageCause damageCause)
extends Record
implements LifestealerHeartDropRestriction
Represents a restriction based on the player's death cause
-
Constructor Summary
ConstructorsConstructorDescriptionDamageCauseHeartDropRestriction
(org.bukkit.event.entity.EntityDamageEvent.DamageCause damageCause) Creates an instance of aDamageCauseHeartDropRestriction
record class. -
Method Summary
Modifier and TypeMethodDescriptionorg.bukkit.event.entity.EntityDamageEvent.DamageCause
Returns the value of thedamageCause
record component.final 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.
-
Constructor Details
-
DamageCauseHeartDropRestriction
public DamageCauseHeartDropRestriction(org.bukkit.event.entity.EntityDamageEvent.DamageCause damageCause) Creates an instance of aDamageCauseHeartDropRestriction
record class.- Parameters:
damageCause
- the value for thedamageCause
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)
. -
damageCause
public org.bukkit.event.entity.EntityDamageEvent.DamageCause damageCause()Returns the value of thedamageCause
record component.- Returns:
- the value of the
damageCause
record component
-