Record Class LinkedPlayer
java.lang.Object
java.lang.Record
org.geysermc.floodgate.core.http.link.LinkedPlayer
-
Constructor Summary
ConstructorsConstructorDescriptionLinkedPlayer(Long xuid, String gamertag, UUID uuid, String username) Creates an instance of aLinkedPlayerrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.gamertag()Returns the value of thegamertagrecord component.final inthashCode()Returns a hash code value for this object.booleanisLinked()final StringtoString()Returns a string representation of this record class.username()Returns the value of theusernamerecord component.uuid()Returns the value of theuuidrecord component.xuid()Returns the value of thexuidrecord component.
-
Constructor Details
-
LinkedPlayer
public LinkedPlayer(@Nullable Long xuid, @Nullable String gamertag, @Nullable UUID uuid, @Nullable String username) Creates an instance of aLinkedPlayerrecord class.- Parameters:
xuid- the value for thexuidrecord componentgamertag- the value for thegamertagrecord componentuuid- the value for theuuidrecord componentusername- the value for theusernamerecord component
-
-
Method Details
-
isLinked
public boolean isLinked() -
toDatabase
-
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). -
xuid
Returns the value of thexuidrecord component.- Returns:
- the value of the
xuidrecord component
-
gamertag
Returns the value of thegamertagrecord component.- Returns:
- the value of the
gamertagrecord component
-
uuid
Returns the value of theuuidrecord component.- Returns:
- the value of the
uuidrecord component
-
username
Returns the value of theusernamerecord component.- Returns:
- the value of the
usernamerecord component
-