Record Class PlayerClickContainerButtonEvent
java.lang.Object
java.lang.Record
eu.sculkpowered.server.event.player.PlayerClickContainerButtonEvent
public record PlayerClickContainerButtonEvent(@NotNull Player player, @NotNull Container container, int button)
extends Record
Represents an event that fires when the client clicks at a container button.
-
Constructor Summary
ConstructorDescriptionPlayerClickContainerButtonEvent
(@NotNull Player player, @NotNull Container container, int button) Creates an instance of aPlayerClickContainerButtonEvent
record class. -
Method Summary
Modifier and TypeMethodDescriptionint
button()
Returns the value of thebutton
record component.@NotNull Container
Returns the value of thecontainer
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
-
PlayerClickContainerButtonEvent
public PlayerClickContainerButtonEvent(@NotNull @NotNull Player player, @NotNull @NotNull Container container, int button) Creates an instance of aPlayerClickContainerButtonEvent
record class.- Parameters:
player
- the value for theplayer
record componentcontainer
- the value for thecontainer
record componentbutton
- the value for thebutton
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
player
Returns the value of theplayer
record component.- Returns:
- the value of the
player
record component
-
container
Returns the value of thecontainer
record component.- Returns:
- the value of the
container
record component
-
button
public int button()Returns the value of thebutton
record component.- Returns:
- the value of the
button
record component
-