Record Class BossBarPacket.UpdateStyleAction
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.server.play.BossBarPacket.UpdateStyleAction
- All Implemented Interfaces:
BossBarPacket.Action
- Enclosing class:
BossBarPacket
public static record BossBarPacket.UpdateStyleAction(BossBar.Color color, BossBar.Overlay overlay)
extends Record
implements BossBarPacket.Action
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final NetworkBuffer.Type
<BossBarPacket.UpdateStyleAction> -
Constructor Summary
ConstructorsConstructorDescriptionUpdateStyleAction
(@NotNull BossBar bar) UpdateStyleAction
(BossBar.Color color, BossBar.Overlay overlay) Creates an instance of aUpdateStyleAction
record class. -
Method Summary
Modifier and TypeMethodDescriptioncolor()
Returns the value of thecolor
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
id()
overlay()
Returns the value of theoverlay
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
SERIALIZER
-
-
Constructor Details
-
UpdateStyleAction
-
UpdateStyleAction
Creates an instance of aUpdateStyleAction
record class.- Parameters:
color
- the value for thecolor
record componentoverlay
- the value for theoverlay
record component
-
-
Method Details
-
id
public int id()- Specified by:
id
in interfaceBossBarPacket.Action
-
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
color
Returns the value of thecolor
record component.- Returns:
- the value of the
color
record component
-
overlay
Returns the value of theoverlay
record component.- Returns:
- the value of the
overlay
record component
-