Record Class PlayerAttackedEntityEvent
java.lang.Object
java.lang.Record
eu.sculkpowered.server.event.player.PlayerAttackedEntityEvent
public record PlayerAttackedEntityEvent(@NotNull Player player, @NotNull Entity entity)
extends Record
Represents an event that fires when a player attacks another entity.
-
Constructor Summary
ConstructorDescriptionPlayerAttackedEntityEvent
(@NotNull Player player, @NotNull Entity entity) Creates an instance of aPlayerAttackedEntityEvent
record class. -
Method Summary
Modifier and TypeMethodDescription@NotNull Entity
entity()
Returns the value of theentity
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.@NotNull Player
player()
Returns the value of theplayer
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
PlayerAttackedEntityEvent
Creates an instance of aPlayerAttackedEntityEvent
record class.- Parameters:
player
- the value for theplayer
record componententity
- the value for theentity
record component
-
-
Method Details
-
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)
. -
player
Returns the value of theplayer
record component.- Returns:
- the value of the
player
record component
-
entity
Returns the value of theentity
record component.- Returns:
- the value of the
entity
record component
-