Record Class CommonVersionPayload
java.lang.Object
java.lang.Record
net.neoforged.neoforge.network.payload.CommonVersionPayload
- Record Components:
versions- A list of all versions supported by the sender.
- All Implemented Interfaces:
CustomPacketPayload
@Internal
public record CommonVersionPayload(List<Integer> versions)
extends Record
implements CustomPacketPayload
Common version payload. Negotiates that the other side supports the same underlying implementation of `c:register` as we do.
- See Also:
-
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 TypeFieldDescriptionstatic final ResourceLocationstatic final StreamCodec<FriendlyByteBuf, CommonVersionPayload> static final CustomPacketPayload.Type<CommonVersionPayload> The field for theversionsrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionCommonVersionPayload(List<Integer> versions) Creates an instance of aCommonVersionPayloadrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.type()versions()Returns the value of theversionsrecord component.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.network.protocol.common.custom.CustomPacketPayload
toVanillaClientbound, toVanillaServerbound
-
Field Details
-
versions
The field for theversionsrecord component. -
ID
-
TYPE
-
STREAM_CODEC
-
-
Constructor Details
-
CommonVersionPayload
public CommonVersionPayload() -
CommonVersionPayload
Creates an instance of aCommonVersionPayloadrecord class.- Parameters:
versions- the value for theversionsrecord component
-
-
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). -
versions
Returns the value of theversionsrecord component.- Returns:
- the value of the
versionsrecord component
-