Record Class PlayerSwitchEvent
java.lang.Object
java.lang.Record
me.hexye.etproxybackend.api.events.PlayerSwitchEvent
-
Constructor Summary
ConstructorsConstructorDescriptionPlayerSwitchEvent(UUID playerID, String playerName, int serverProxyPort) Creates an instance of aPlayerSwitchEventrecord 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.playerID()Returns the value of theplayerIDrecord component.Returns the value of theplayerNamerecord component.intReturns the value of theserverProxyPortrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
PlayerSwitchEvent
Creates an instance of aPlayerSwitchEventrecord class.- Parameters:
playerID- the value for theplayerIDrecord componentplayerName- the value for theplayerNamerecord componentserverProxyPort- the value for theserverProxyPortrecord component
-
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
playerID
Returns the value of theplayerIDrecord component.- Returns:
- the value of the
playerIDrecord component
-
playerName
Returns the value of theplayerNamerecord component.- Returns:
- the value of the
playerNamerecord component
-
serverProxyPort
public int serverProxyPort()Returns the value of theserverProxyPortrecord component.- Returns:
- the value of the
serverProxyPortrecord component
-