Record Class ScoreboardObjectivePacket
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.server.play.ScoreboardObjectivePacket
- All Implemented Interfaces:
ComponentHolder<ServerPacket>
,NetworkBuffer.Writer
,SendablePacket
,ServerPacket
,ServerPacket.ComponentHolding
,ServerPacket.Play
public record ScoreboardObjectivePacket(@NotNull String objectiveName, byte mode, @Nullable Component objectiveValue, @Nullable ScoreboardObjectivePacket.Type type, Sidebar.NumberFormat numberFormat)
extends Record
implements ServerPacket.Play, ServerPacket.ComponentHolding
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic enum
This enumeration represents all available types for the scoreboard objectiveNested classes/interfaces inherited from interface net.minestom.server.network.packet.server.ServerPacket
ServerPacket.ComponentHolding, ServerPacket.Configuration, ServerPacket.Login, ServerPacket.Play, ServerPacket.Status
-
Constructor Summary
ConstructorDescriptionScoreboardObjectivePacket
(@NotNull String objectiveName, byte mode, @Nullable Component objectiveValue, @Nullable ScoreboardObjectivePacket.Type type, Sidebar.NumberFormat numberFormat) Creates an instance of aScoreboardObjectivePacket
record class.ScoreboardObjectivePacket
(@NotNull NetworkBuffer reader) -
Method Summary
Modifier and TypeMethodDescription@NotNull Collection
<Component> Gets the components held by this object.@NotNull ServerPacket
copyWithOperator
(@NotNull UnaryOperator<Component> operator) Returns a copy of this object.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.byte
mode()
Returns the value of themode
record component.Returns the value of thenumberFormat
record component.@NotNull String
Returns the value of theobjectiveName
record component.@Nullable Component
Returns the value of theobjectiveValue
record component.int
playId()
final String
toString()
Returns a string representation of this record class.@Nullable ScoreboardObjectivePacket.Type
type()
Returns the value of thetype
record component.void
write
(@NotNull NetworkBuffer writer) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minestom.server.adventure.ComponentHolder
visitComponents
Methods inherited from interface net.minestom.server.network.packet.server.ServerPacket
getId
-
Constructor Details
-
ScoreboardObjectivePacket
-
ScoreboardObjectivePacket
public ScoreboardObjectivePacket(@NotNull @NotNull String objectiveName, byte mode, @Nullable @Nullable Component objectiveValue, @Nullable @Nullable ScoreboardObjectivePacket.Type type, @Nullable Sidebar.NumberFormat numberFormat) Creates an instance of aScoreboardObjectivePacket
record class.- Parameters:
objectiveName
- the value for theobjectiveName
record componentmode
- the value for themode
record componentobjectiveValue
- the value for theobjectiveValue
record componenttype
- the value for thetype
record componentnumberFormat
- the value for thenumberFormat
record component
-
-
Method Details
-
write
- Specified by:
write
in interfaceNetworkBuffer.Writer
-
playId
public int playId()- Specified by:
playId
in interfaceServerPacket.Play
-
components
Description copied from interface:ComponentHolder
Gets the components held by this object.- Specified by:
components
in interfaceComponentHolder<ServerPacket>
- Returns:
- the components
-
copyWithOperator
@NotNull public @NotNull ServerPacket copyWithOperator(@NotNull @NotNull UnaryOperator<Component> operator) Description copied from interface:ComponentHolder
Returns a copy of this object. For each component this object holds, the operator is applied to the copy before returning.- Specified by:
copyWithOperator
in interfaceComponentHolder<ServerPacket>
- Parameters:
operator
- the operator- Returns:
- the copy
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
objectiveName
Returns the value of theobjectiveName
record component.- Returns:
- the value of the
objectiveName
record component
-
mode
public byte mode()Returns the value of themode
record component.- Returns:
- the value of the
mode
record component
-
objectiveValue
Returns the value of theobjectiveValue
record component.- Returns:
- the value of the
objectiveValue
record component
-
type
Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-
numberFormat
Returns the value of thenumberFormat
record component.- Returns:
- the value of the
numberFormat
record component
-