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
ConstructorsConstructorDescriptionPlayerClickContainerButtonEvent(@NotNull Player player, @NotNull Container container, int button) Creates an instance of aPlayerClickContainerButtonEventrecord class. -
Method Summary
Modifier and TypeMethodDescriptionintbutton()Returns the value of thebuttonrecord component.@NotNull ContainerReturns the value of thecontainerrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.@NotNull Playerplayer()Returns the value of theplayerrecord component.final StringtoString()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 aPlayerClickContainerButtonEventrecord class.- Parameters:
player- the value for theplayerrecord componentcontainer- the value for thecontainerrecord componentbutton- the value for thebuttonrecord 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 theplayerrecord component.- Returns:
- the value of the
playerrecord component
-
container
Returns the value of thecontainerrecord component.- Returns:
- the value of the
containerrecord component
-
button
public int button()Returns the value of thebuttonrecord component.- Returns:
- the value of the
buttonrecord component
-