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

    Constructors
    Constructor
    Description
    Creates an instance of a WorldSpecificHeartDropRestriction record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    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.
    Returns the value of the worldName record component.

    Methods inherited from class java.lang.Object

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

    • WorldSpecificHeartDropRestriction

      public WorldSpecificHeartDropRestriction(String worldName)
      Creates an instance of a WorldSpecificHeartDropRestriction record class.
      Parameters:
      worldName - the value for the worldName 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.
    • worldName

      public String worldName()
      Returns the value of the worldName record component.
      Returns:
      the value of the worldName record component