Record Class ChangeGroupPacket
java.lang.Object
java.lang.Record
net.liukrast.toggleable_enchantments.packet.ChangeGroupPacket
- All Implemented Interfaces:
net.minecraft.network.protocol.common.custom.CustomPacketPayload
@NonnullDefault
public record ChangeGroupPacket(net.minecraft.resources.ResourceLocation enchantment, int group)
extends Record
implements net.minecraft.network.protocol.common.custom.CustomPacketPayload
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.network.protocol.common.custom.CustomPacketPayload
net.minecraft.network.protocol.common.custom.CustomPacketPayload.FallbackProvider<B extends net.minecraft.network.FriendlyByteBuf>, net.minecraft.network.protocol.common.custom.CustomPacketPayload.Type<T extends net.minecraft.network.protocol.common.custom.CustomPacketPayload>, net.minecraft.network.protocol.common.custom.CustomPacketPayload.TypeAndCodec<B extends net.minecraft.network.FriendlyByteBuf,T extends net.minecraft.network.protocol.common.custom.CustomPacketPayload> -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final net.minecraft.network.codec.StreamCodec<net.minecraft.network.RegistryFriendlyByteBuf, ChangeGroupPacket> static final net.minecraft.network.protocol.common.custom.CustomPacketPayload.Type<ChangeGroupPacket> -
Constructor Summary
ConstructorsConstructorDescriptionChangeGroupPacket(net.minecraft.network.RegistryFriendlyByteBuf buf) ChangeGroupPacket(net.minecraft.resources.ResourceLocation enchantment, int group) Creates an instance of aChangeGroupPacketrecord class. -
Method Summary
Modifier and TypeMethodDescriptionnet.minecraft.resources.ResourceLocationReturns the value of theenchantmentrecord component.final booleanIndicates whether some other object is "equal to" this one.intgroup()Returns the value of thegrouprecord component.static voidhandle(ChangeGroupPacket packet, net.minecraft.world.entity.player.Player ctx) final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.net.minecraft.network.protocol.common.custom.CustomPacketPayload.Type<? extends net.minecraft.network.protocol.common.custom.CustomPacketPayload> type()voidwrite(net.minecraft.network.RegistryFriendlyByteBuf buf)
-
Field Details
-
PACKET_TYPE
public static final net.minecraft.network.protocol.common.custom.CustomPacketPayload.Type<ChangeGroupPacket> PACKET_TYPE -
CODEC
public static final net.minecraft.network.codec.StreamCodec<net.minecraft.network.RegistryFriendlyByteBuf,ChangeGroupPacket> CODEC
-
-
Constructor Details
-
ChangeGroupPacket
public ChangeGroupPacket(net.minecraft.network.RegistryFriendlyByteBuf buf) -
ChangeGroupPacket
public ChangeGroupPacket(net.minecraft.resources.ResourceLocation enchantment, int group) Creates an instance of aChangeGroupPacketrecord class.- Parameters:
enchantment- the value for theenchantmentrecord componentgroup- the value for thegrouprecord component
-
-
Method Details
-
write
public void write(net.minecraft.network.RegistryFriendlyByteBuf buf) -
type
public net.minecraft.network.protocol.common.custom.CustomPacketPayload.Type<? extends net.minecraft.network.protocol.common.custom.CustomPacketPayload> type()- Specified by:
typein interfacenet.minecraft.network.protocol.common.custom.CustomPacketPayload
-
handle
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
enchantment
public net.minecraft.resources.ResourceLocation enchantment()Returns the value of theenchantmentrecord component.- Returns:
- the value of the
enchantmentrecord component
-
group
public int group()Returns the value of thegrouprecord component.- Returns:
- the value of the
grouprecord component
-