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 CustomPacketPayload
CustomPacketPayload.FallbackProvider<B>, CustomPacketPayload.Type<T>, CustomPacketPayload.TypeAndCodec<B,T> -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Identifierstatic 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 interface CustomPacketPayload
toVanillaClientbound, toVanillaServerbound
-
Field Details
-
versions
-
ID
-
TYPE
-
STREAM_CODEC
-
-
Constructor Details
-
CommonVersionPayload
public CommonVersionPayload() -
CommonVersionPayload
-
-
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). -
versions
-