Record Class ServerBoundSaveFilePacket

java.lang.Object
java.lang.Record
de.luckymcdev.foundryengine.common.network.packets.explorer.ServerBoundSaveFilePacket
All Implemented Interfaces:
AbstractPacket<ServerBoundSaveFilePacket>, net.minecraft.network.protocol.common.custom.CustomPacketPayload

public record ServerBoundSaveFilePacket(String relativePath, String content) extends Record implements AbstractPacket<ServerBoundSaveFilePacket>
Sent by the client when the user saves an edited remote file. The server writes the content to disk (within Common.DIRECTORY).
  • Nested Class Summary

    Nested classes/interfaces inherited from interface AbstractPacket

    AbstractPacket.Definition<T>

    Nested classes/interfaces inherited from interface net.minecraft.network.protocol.common.custom.CustomPacketPayload

    net.minecraft.network.protocol.common.custom.CustomPacketPayload.FallbackProvider<B>, net.minecraft.network.protocol.common.custom.CustomPacketPayload.Type<T>, net.minecraft.network.protocol.common.custom.CustomPacketPayload.TypeAndCodec<B,T>
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    ServerBoundSaveFilePacket(String relativePath, String content)
    Creates an instance of a ServerBoundSaveFilePacket record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the value of the content record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
     
    net.minecraft.network.codec.StreamCodec<net.minecraft.network.RegistryFriendlyByteBuf, ServerBoundSaveFilePacket>
     
    net.minecraft.network.protocol.common.custom.CustomPacketPayload.Type<ServerBoundSaveFilePacket>
     
    void
    handleServer(net.neoforged.neoforge.network.handling.IPayloadContext ctx)
     
    final int
    Returns a hash code value for this object.
    Returns the value of the relativePath record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface AbstractPacket

    handleClient, type

    Methods inherited from interface net.minecraft.network.protocol.common.custom.CustomPacketPayload

    toVanillaClientbound, toVanillaServerbound
  • Field Details

  • Constructor Details

    • ServerBoundSaveFilePacket

      public ServerBoundSaveFilePacket(String relativePath, String content)
      Creates an instance of a ServerBoundSaveFilePacket record class.
      Parameters:
      relativePath - the value for the relativePath record component
      content - the value for the content record component
  • Method Details

    • getType

      public net.minecraft.network.protocol.common.custom.CustomPacketPayload.Type<ServerBoundSaveFilePacket> getType()
      Specified by:
      getType in interface AbstractPacket<ServerBoundSaveFilePacket>
    • getBoundTo

      public PacketBounds getBoundTo()
      Specified by:
      getBoundTo in interface AbstractPacket<ServerBoundSaveFilePacket>
    • getCodec

      public net.minecraft.network.codec.StreamCodec<net.minecraft.network.RegistryFriendlyByteBuf, ServerBoundSaveFilePacket> getCodec()
      Specified by:
      getCodec in interface AbstractPacket<ServerBoundSaveFilePacket>
    • handleServer

      public void handleServer(net.neoforged.neoforge.network.handling.IPayloadContext ctx)
      Specified by:
      handleServer in interface AbstractPacket<ServerBoundSaveFilePacket>
    • 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. All components in this record class are compared with Objects::equals(Object,Object).
      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.
    • relativePath

      public String relativePath()
      Returns the value of the relativePath record component.
      Returns:
      the value of the relativePath record component
    • content

      public String content()
      Returns the value of the content record component.
      Returns:
      the value of the content record component