Record Class PlayerRelation

java.lang.Object
java.lang.Record
org.rusherhack.client.api.utils.objects.PlayerRelation
All Implemented Interfaces:
org.rusherhack.core.serialize.ISerializable<com.google.gson.JsonElement>, org.rusherhack.core.serialize.JsonSerializable

public record PlayerRelation(String username, String alias, PlayerRelation.State state) extends Record implements org.rusherhack.core.serialize.JsonSerializable
TODO: UUID based
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static enum 
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates an instance of a PlayerRelation record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the value of the alias record component.
    boolean
    deserialize(com.google.gson.JsonElement jsonElement)
     
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    com.google.gson.JsonElement
     
    Returns the value of the state record component.
    final String
    Returns a string representation of this record class.
    Returns the value of the username record component.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface org.rusherhack.core.serialize.ISerializable

    shouldAutoSave, shouldSerialize
  • Constructor Details

    • PlayerRelation

      public PlayerRelation(String username, String alias, PlayerRelation.State state)
      Creates an instance of a PlayerRelation record class.
      Parameters:
      username - the value for the username record component
      alias - the value for the alias record component
      state - the value for the state record component
  • Method Details

    • serialize

      public com.google.gson.JsonElement serialize()
      Specified by:
      serialize in interface org.rusherhack.core.serialize.ISerializable<com.google.gson.JsonElement>
    • deserialize

      public boolean deserialize(com.google.gson.JsonElement jsonElement)
      Specified by:
      deserialize in interface org.rusherhack.core.serialize.ISerializable<com.google.gson.JsonElement>
    • 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. All components in this record class are compared with Objects::equals(Object,Object).
      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.
    • username

      public String username()
      Returns the value of the username record component.
      Returns:
      the value of the username record component
    • alias

      public String alias()
      Returns the value of the alias record component.
      Returns:
      the value of the alias record component
    • state

      public PlayerRelation.State state()
      Returns the value of the state record component.
      Returns:
      the value of the state record component