Record Class ModdedConfigurationPayloadRegistration<T extends CustomPacketPayload>
java.lang.Object
java.lang.Record
net.neoforged.neoforge.network.registration.ModdedConfigurationPayloadRegistration<T>
- Type Parameters:
T
- The type of payload.- Record Components:
id
- The id of the payload.type
- The type of payload.handler
- The handler for the payload.reader
- The reader for the payload.
@Internal
public record ModdedConfigurationPayloadRegistration<T extends CustomPacketPayload>(ResourceLocation id, Class<T extends CustomPacketPayload> type, IPayloadHandler<T extends CustomPacketPayload> handler, StreamCodec<FriendlyByteBuf,T extends CustomPacketPayload> reader)
extends Record
Registration for a custom packet payload.
This type holds the negotiated preferredVersion of the payload to use, and the handler for it.
-
Field Summary
Modifier and TypeFieldDescriptionprivate final IPayloadHandler
<T> The field for thehandler
record component.private final ResourceLocation
The field for theid
record component.private final StreamCodec
<FriendlyByteBuf, T> The field for thereader
record component.The field for thetype
record component. -
Constructor Summary
ConstructorDescriptionModdedConfigurationPayloadRegistration
(ResourceLocation id, Class<T> type, IPayloadHandler<T> handler, StreamCodec<FriendlyByteBuf, T> reader) Creates an instance of aModdedConfigurationPayloadRegistration
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.handler()
Returns the value of thehandler
record component.final int
hashCode()
Returns a hash code value for this object.id()
Returns the value of theid
record component.reader()
Returns the value of thereader
record component.final String
toString()
Returns a string representation of this record class.type()
Returns the value of thetype
record component.
-
Field Details
-
Constructor Details
-
ModdedConfigurationPayloadRegistration
public ModdedConfigurationPayloadRegistration(ResourceLocation id, Class<T> type, IPayloadHandler<T> handler, StreamCodec<FriendlyByteBuf, T> reader) Creates an instance of aModdedConfigurationPayloadRegistration
record class.
-
-
Method Details
-
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)
. -
id
Returns the value of theid
record component.- Returns:
- the value of the
id
record component
-
type
Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-
handler
Returns the value of thehandler
record component.- Returns:
- the value of the
handler
record component
-
reader
Returns the value of thereader
record component.- Returns:
- the value of the
reader
record component
-