Record Class ClientSettingsPacket

java.lang.Object
java.lang.Record
net.minestom.server.network.packet.client.common.ClientSettingsPacket
All Implemented Interfaces:
NetworkBuffer.Writer, ClientPacket

public record ClientSettingsPacket(@NotNull String locale, byte viewDistance, @NotNull ChatMessageType chatMessageType, boolean chatColors, byte displayedSkinParts, Player.MainHand mainHand, boolean enableTextFiltering, boolean allowsListing) extends Record implements ClientPacket
  • Constructor Details

    • ClientSettingsPacket

      public ClientSettingsPacket(@NotNull @NotNull String locale, byte viewDistance, @NotNull @NotNull ChatMessageType chatMessageType, boolean chatColors, byte displayedSkinParts, @NotNull Player.MainHand mainHand, boolean enableTextFiltering, boolean allowsListing)
      Creates an instance of a ClientSettingsPacket record class.
      Parameters:
      locale - the value for the locale record component
      viewDistance - the value for the viewDistance record component
      chatMessageType - the value for the chatMessageType record component
      chatColors - the value for the chatColors record component
      displayedSkinParts - the value for the displayedSkinParts record component
      mainHand - the value for the mainHand record component
      enableTextFiltering - the value for the enableTextFiltering record component
      allowsListing - the value for the allowsListing record component
    • ClientSettingsPacket

      public ClientSettingsPacket(@NotNull @NotNull NetworkBuffer reader)
  • Method Details

    • write

      public void write(@NotNull @NotNull NetworkBuffer writer)
      Specified by:
      write in interface NetworkBuffer.Writer
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • locale

      @NotNull public @NotNull String locale()
      Returns the value of the locale record component.
      Returns:
      the value of the locale record component
    • viewDistance

      public byte viewDistance()
      Returns the value of the viewDistance record component.
      Returns:
      the value of the viewDistance record component
    • chatMessageType

      @NotNull public @NotNull ChatMessageType chatMessageType()
      Returns the value of the chatMessageType record component.
      Returns:
      the value of the chatMessageType record component
    • chatColors

      public boolean chatColors()
      Returns the value of the chatColors record component.
      Returns:
      the value of the chatColors record component
    • displayedSkinParts

      public byte displayedSkinParts()
      Returns the value of the displayedSkinParts record component.
      Returns:
      the value of the displayedSkinParts record component
    • mainHand

      @NotNull public Player.MainHand mainHand()
      Returns the value of the mainHand record component.
      Returns:
      the value of the mainHand record component
    • enableTextFiltering

      public boolean enableTextFiltering()
      Returns the value of the enableTextFiltering record component.
      Returns:
      the value of the enableTextFiltering record component
    • allowsListing

      public boolean allowsListing()
      Returns the value of the allowsListing record component.
      Returns:
      the value of the allowsListing record component