Record Class BossBarPacket.UpdateStyleAction
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.server.play.BossBarPacket.UpdateStyleAction
- All Implemented Interfaces:
NetworkBuffer.Writer,BossBarPacket.Action
- Enclosing class:
BossBarPacket
public static record BossBarPacket.UpdateStyleAction(net.kyori.adventure.bossbar.BossBar.Color color, net.kyori.adventure.bossbar.BossBar.Overlay overlay)
extends Record
implements BossBarPacket.Action
-
Constructor Summary
ConstructorsConstructorDescriptionUpdateStyleAction(@NotNull net.kyori.adventure.bossbar.BossBar bar) UpdateStyleAction(net.kyori.adventure.bossbar.BossBar.Color color, net.kyori.adventure.bossbar.BossBar.Overlay overlay) Creates an instance of aUpdateStyleActionrecord class.UpdateStyleAction(@NotNull NetworkBuffer reader) -
Method Summary
Modifier and TypeMethodDescriptionnet.kyori.adventure.bossbar.BossBar.Colorcolor()Returns the value of thecolorrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intid()net.kyori.adventure.bossbar.BossBar.Overlayoverlay()Returns the value of theoverlayrecord component.final StringtoString()Returns a string representation of this record class.voidwrite(@NotNull NetworkBuffer writer)
-
Constructor Details
-
UpdateStyleAction
public UpdateStyleAction(@NotNull @NotNull net.kyori.adventure.bossbar.BossBar bar) -
UpdateStyleAction
-
UpdateStyleAction
public UpdateStyleAction(@NotNull net.kyori.adventure.bossbar.BossBar.Color color, @NotNull net.kyori.adventure.bossbar.BossBar.Overlay overlay) Creates an instance of aUpdateStyleActionrecord class.- Parameters:
color- the value for thecolorrecord componentoverlay- the value for theoverlayrecord component
-
-
Method Details
-
write
- Specified by:
writein interfaceNetworkBuffer.Writer
-
id
public int id()- Specified by:
idin interfaceBossBarPacket.Action
-
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). -
color
@NotNull public net.kyori.adventure.bossbar.BossBar.Color color()Returns the value of thecolorrecord component.- Returns:
- the value of the
colorrecord component
-
overlay
@NotNull public net.kyori.adventure.bossbar.BossBar.Overlay overlay()Returns the value of theoverlayrecord component.- Returns:
- the value of the
overlayrecord component
-