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
-
Constructor Summary
ConstructorDescriptionPlayerRelation
(String username, String alias, PlayerRelation.State state) Creates an instance of aPlayerRelation
record class. -
Method Summary
Modifier and TypeMethodDescriptionalias()
Returns the value of thealias
record component.boolean
deserialize
(com.google.gson.JsonElement jsonElement) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.com.google.gson.JsonElement
state()
Returns the value of thestate
record component.final String
toString()
Returns a string representation of this record class.username()
Returns the value of theusername
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
Creates an instance of aPlayerRelation
record class.- Parameters:
username
- the value for theusername
record componentalias
- the value for thealias
record componentstate
- the value for thestate
record component
-
-
Method Details
-
serialize
public com.google.gson.JsonElement serialize()- Specified by:
serialize
in interfaceorg.rusherhack.core.serialize.ISerializable<com.google.gson.JsonElement>
-
deserialize
public boolean deserialize(com.google.gson.JsonElement jsonElement) - Specified by:
deserialize
in interfaceorg.rusherhack.core.serialize.ISerializable<com.google.gson.JsonElement>
-
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)
. -
username
Returns the value of theusername
record component.- Returns:
- the value of the
username
record component
-
alias
Returns the value of thealias
record component.- Returns:
- the value of the
alias
record component
-
state
Returns the value of thestate
record component.- Returns:
- the value of the
state
record component
-