Record Class GSAuthApi.LookupResult

java.lang.Object
java.lang.Record
com.gamersafer.minecraft.auth.common.api.GSAuthApi.LookupResult
Enclosing class:
GSAuthApi

public static record GSAuthApi.LookupResult(String guildMemberId, UUID playerUuid, String playerName, String playerHostAddress, boolean success) extends Record
  • Constructor Details

    • LookupResult

      public LookupResult(String guildMemberId, UUID playerUuid, String playerName, String playerHostAddress, boolean success)
      Creates an instance of a LookupResult record class.
      Parameters:
      guildMemberId - the value for the guildMemberId record component
      playerUuid - the value for the playerUuid record component
      playerName - the value for the playerName record component
      playerHostAddress - the value for the playerHostAddress record component
      success - the value for the success record component
  • Method Details

    • getUserIdentity

      public UserIdentity getUserIdentity()
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • guildMemberId

      public String guildMemberId()
      Returns the value of the guildMemberId record component.
      Returns:
      the value of the guildMemberId record component
    • playerUuid

      public UUID playerUuid()
      Returns the value of the playerUuid record component.
      Returns:
      the value of the playerUuid record component
    • playerName

      public String playerName()
      Returns the value of the playerName record component.
      Returns:
      the value of the playerName record component
    • playerHostAddress

      public String playerHostAddress()
      Returns the value of the playerHostAddress record component.
      Returns:
      the value of the playerHostAddress record component
    • success

      public boolean success()
      Returns the value of the success record component.
      Returns:
      the value of the success record component