Record Class DisplayScoreboardPacket
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.server.play.DisplayScoreboardPacket
- All Implemented Interfaces:
SendablePacket
,ServerPacket
,ServerPacket.Play
public record DisplayScoreboardPacket(byte position, String scoreName)
extends Record
implements ServerPacket.Play
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minestom.server.network.packet.server.ServerPacket
ServerPacket.ComponentHolding, ServerPacket.Configuration, ServerPacket.Login, ServerPacket.Play, ServerPacket.Status
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionDisplayScoreboardPacket
(byte position, String scoreName) Creates an instance of aDisplayScoreboardPacket
record class. -
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.byte
position()
Returns the value of theposition
record component.Returns the value of thescoreName
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
SERIALIZER
-
-
Constructor Details
-
DisplayScoreboardPacket
Creates an instance of aDisplayScoreboardPacket
record class.- Parameters:
position
- the value for theposition
record componentscoreName
- the value for thescoreName
record component
-
-
Method Details
-
toString
-
hashCode
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with thecompare
method from their corresponding wrapper classes. -
position
public byte position()Returns the value of theposition
record component.- Returns:
- the value of the
position
record component
-
scoreName
Returns the value of thescoreName
record component.- Returns:
- the value of the
scoreName
record component
-