Record Class ServerDataPacket
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.server.play.ServerDataPacket
- All Implemented Interfaces:
SendablePacket
,ServerPacket
,ServerPacket.Play
public record ServerDataPacket(@NotNull Component motd, byte @Nullable [] iconBase64, boolean enforcesSecureChat)
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
ConstructorsConstructorDescriptionServerDataPacket
(@NotNull Component motd, byte @Nullable [] iconBase64, boolean enforcesSecureChat) Creates an instance of aServerDataPacket
record class. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns the value of theenforcesSecureChat
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.byte @Nullable []
Returns the value of theiconBase64
record component.@NotNull Component
motd()
Returns the value of themotd
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
SERIALIZER
-
-
Constructor Details
-
ServerDataPacket
public ServerDataPacket(@NotNull @NotNull Component motd, byte @Nullable [] iconBase64, boolean enforcesSecureChat) Creates an instance of aServerDataPacket
record class.- Parameters:
motd
- the value for themotd
record componenticonBase64
- the value for theiconBase64
record componentenforcesSecureChat
- the value for theenforcesSecureChat
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. -
motd
Returns the value of themotd
record component.- Returns:
- the value of the
motd
record component
-
iconBase64
public byte @Nullable [] iconBase64()Returns the value of theiconBase64
record component.- Returns:
- the value of the
iconBase64
record component
-
enforcesSecureChat
public boolean enforcesSecureChat()Returns the value of theenforcesSecureChat
record component.- Returns:
- the value of the
enforcesSecureChat
record component
-