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
Modifier and TypeFieldDescriptionprivate final byte[]
The field for thecontents
record component.private final String
The field for thefileName
record component.static final StreamCodec
<FriendlyByteBuf, ConfigFilePayload> static final CustomPacketPayload.Type
<ConfigFilePayload> -
Constructor Summary
ConstructorDescriptionConfigFilePayload
(String fileName, byte[] contents) Creates an instance of aConfigFilePayload
record class. -
Method Summary
Modifier and TypeMethodDescriptionbyte[]
contents()
Returns the value of thecontents
record component.final boolean
Indicates whether some other object is "equal to" this one.fileName()
Returns the value of thefileName
record component.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.type()
-
Field Details
-
Constructor Details
-
Method Details
-
type
- Specified by:
type
in 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 thefileName
record component.- Returns:
- the value of the
fileName
record component
-
contents
public byte[] contents()Returns the value of thecontents
record component.- Returns:
- the value of the
contents
record component
-