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

    Constructors
    Constructor
    Description
    DamageCauseHeartDropRestriction(org.bukkit.event.entity.EntityDamageEvent.DamageCause damageCause)
    Creates an instance of a DamageCauseHeartDropRestriction record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    org.bukkit.event.entity.EntityDamageEvent.DamageCause
    Returns the value of the damageCause record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    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 player
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • DamageCauseHeartDropRestriction

      public DamageCauseHeartDropRestriction(org.bukkit.event.entity.EntityDamageEvent.DamageCause damageCause)
      Creates an instance of a DamageCauseHeartDropRestriction record class.
      Parameters:
      damageCause - the value for the damageCause 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 interface LifestealerHeartDropRestriction
      Parameters:
      player - the player that died
      user - the user related to the player
      event - the death event
      Returns:
      if this restriction applies to the player
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • damageCause

      public org.bukkit.event.entity.EntityDamageEvent.DamageCause damageCause()
      Returns the value of the damageCause record component.
      Returns:
      the value of the damageCause record component