Record Class GameProfile.Property
java.lang.Object
java.lang.Record
net.minestom.server.network.player.GameProfile.Property
- All Implemented Interfaces:
NetworkBuffer.Writer
- Enclosing class:
GameProfile
public static record GameProfile.Property(@NotNull String name, @NotNull String value, @Nullable String signature)
extends Record
implements NetworkBuffer.Writer
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.@NotNull String
name()
Returns the value of thename
record component.@Nullable String
Returns the value of thesignature
record component.final String
toString()
Returns a string representation of this record class.@NotNull String
value()
Returns the value of thevalue
record component.void
write
(@NotNull NetworkBuffer writer)
-
Constructor Details
-
Property
-
Property
-
Property
public Property(@NotNull @NotNull String name, @NotNull @NotNull String value, @Nullable @Nullable String signature) Creates an instance of aProperty
record class.- Parameters:
name
- the value for thename
record componentvalue
- the value for thevalue
record componentsignature
- the value for thesignature
record component
-
-
Method Details
-
write
- Specified by:
write
in interfaceNetworkBuffer.Writer
-
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)
. -
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-
signature
Returns the value of thesignature
record component.- Returns:
- the value of the
signature
record component
-