Record Class ConfigFilePayload
java.lang.Object
java.lang.Record
net.neoforged.neoforge.network.payload.ConfigFilePayload
- Record Components:
fileName- The name of the config file.contents- The contents of the config file.
- All Implemented Interfaces:
CustomPacketPayload
@Internal
public record ConfigFilePayload(String fileName, byte[] contents)
extends Record
implements CustomPacketPayload
A payload that contains a config file.
This is used to send config files to the client.
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.network.protocol.common.custom.CustomPacketPayload
CustomPacketPayload.FallbackProvider<B extends FriendlyByteBuf>, CustomPacketPayload.Type<T extends CustomPacketPayload>, CustomPacketPayload.TypeAndCodec<B extends FriendlyByteBuf,T extends CustomPacketPayload> -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final byte[]The field for thecontentsrecord component.private final StringThe field for thefileNamerecord component.static final StreamCodec<FriendlyByteBuf, ConfigFilePayload> static final CustomPacketPayload.Type<ConfigFilePayload> -
Constructor Summary
ConstructorsConstructorDescriptionConfigFilePayload(String fileName, byte[] contents) Creates an instance of aConfigFilePayloadrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbyte[]contents()Returns the value of thecontentsrecord component.final booleanIndicates whether some other object is "equal to" this one.fileName()Returns the value of thefileNamerecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.type()
-
Field Details
-
Constructor Details
-
Method Details
-
type
- Specified by:
typein interfaceCustomPacketPayload
-
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). -
fileName
Returns the value of thefileNamerecord component.- Returns:
- the value of the
fileNamerecord component
-
contents
public byte[] contents()Returns the value of thecontentsrecord component.- Returns:
- the value of the
contentsrecord component
-