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 CustomPacketPayload
CustomPacketPayload.FallbackProvider<B>, CustomPacketPayload.Type<T>, CustomPacketPayload.TypeAndCodec<B,T> -
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()Methods inherited from interface CustomPacketPayload
toVanillaClientbound, toVanillaServerbound
-
Field Details
-
fileName
-
contents
private final byte[] contentsThe field for thecontentsrecord component. -
TYPE
-
STREAM_CODEC
-
-
Constructor Details
-
ConfigFilePayload
-
-
Method Details
-
type
- Specified by:
typein interfaceCustomPacketPayload
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
fileName
-
contents
-