Record Class ConfigFilePayload
java.lang.Object
java.lang.Record
net.neoforged.neoforge.network.payload.ConfigFilePayload
- Record Components:
 contents- The contents of the config file.fileName- The name of the config file.
- All Implemented Interfaces:
 CustomPacketPayload
@Internal
public record ConfigFilePayload(byte[] contents, String fileName)
extends Record
implements CustomPacketPayload
A payload that contains a config file.
 
This is used to send config files to the client.
- 
Field Summary
Fields - 
Constructor Summary
ConstructorsConstructorDescriptionConfigFilePayload(byte[] contents, String fileName) 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.id()final StringtoString()Returns a string representation of this record class.voidwrite(FriendlyByteBuf buf)  
- 
Field Details
 - 
Constructor Details
 - 
Method Details
- 
write
- Specified by:
 writein interfaceCustomPacketPayload
 - 
id
- Specified by:
 idin 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). - 
contents
public byte[] contents()Returns the value of thecontentsrecord component.- Returns:
 - the value of the 
contentsrecord component 
 - 
fileName
Returns the value of thefileNamerecord component.- Returns:
 - the value of the 
fileNamerecord component 
 
 -