Record Class PlayerFinishedConfigurationEvent
java.lang.Object
java.lang.Record
com.velocitypowered.api.event.player.configuration.PlayerFinishedConfigurationEvent
- Record Components:
player- The player who has finished the configuration state.server- The server that has (re-)configured the player.
public record PlayerFinishedConfigurationEvent(@NotNull Player player, @NotNull ServerConnection server)
extends Record
This event is executed when a player has finished the configuration state.
From this moment on, the InboundConnection.getProtocolState() method
will return ProtocolState.PLAY.
- Since:
- 3.3.0
- Since Minecraft:
- 1.20.2
-
Constructor Summary
ConstructorsConstructorDescriptionPlayerFinishedConfigurationEvent(@NotNull Player player, @NotNull ServerConnection server) Creates an instance of aPlayerFinishedConfigurationEventrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal 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.@NotNull ServerConnectionserver()Returns the value of theserverrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
PlayerFinishedConfigurationEvent
public PlayerFinishedConfigurationEvent(@NotNull @NotNull Player player, @NotNull @NotNull ServerConnection server) Creates an instance of aPlayerFinishedConfigurationEventrecord class.
-
-
Method Details
-
toString
-
hashCode
-
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
-
server
-