Record Class RemoveEntityStatusEffectS2CPacket
java.lang.Object
java.lang.Record
net.minecraft.network.packet.s2c.play.RemoveEntityStatusEffectS2CPacket
- Record Components:
entityId-effectType-
- All Implemented Interfaces:
Packet<ClientPlayPacketListener>
public record RemoveEntityStatusEffectS2CPacket(int entityId, RegistryEntry<StatusEffect> effectType)
extends Record
implements Packet<ClientPlayPacketListener>
- Mappings:
Namespace Name official abkintermediary net/minecraft/class_2718named net/minecraft/network/packet/s2c/play/RemoveEntityStatusEffectS2CPacketofficial aintermediary comp_2175named entityIdofficial bintermediary comp_2176named effectType
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final RegistryEntry<StatusEffect>The field for theeffectTyperecord component.private final intThe field for theentityIdrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionRemoveEntityStatusEffectS2CPacket(int entityId, RegistryEntry<StatusEffect> registryEntry) -
Method Summary
Modifier and TypeMethodDescriptionvoidapply(ClientPlayPacketListener clientPlayPacketListener) Returns the value of theeffectTyperecord component.intentityId()Returns the value of theentityIdrecord component.final 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.voidwrite(PacketByteBuf buf) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.network.packet.Packet
getNewNetworkState, isWritingErrorSkippable
-
Field Details
-
entityId
private final int entityIdThe field for theentityIdrecord component. -
effectType
The field for theeffectTyperecord component.
-
-
Constructor Details
-
RemoveEntityStatusEffectS2CPacket
- Mappings:
Namespace Name Mixin selector official <init>Labk;<init>(Luj;)Vintermediary <init>Lnet/minecraft/class_2718;<init>(Lnet/minecraft/class_2540;)Vnamed <init>Lnet/minecraft/network/packet/s2c/play/RemoveEntityStatusEffectS2CPacket;<init>(Lnet/minecraft/network/PacketByteBuf;)V
-
RemoveEntityStatusEffectS2CPacket
- Mappings:
Namespace Name Mixin selector official <init>Labk;<init>(ILih;)Vintermediary <init>Lnet/minecraft/class_2718;<init>(ILnet/minecraft/class_6880;)Vnamed <init>Lnet/minecraft/network/packet/s2c/play/RemoveEntityStatusEffectS2CPacket;<init>(ILnet/minecraft/registry/entry/RegistryEntry;)V
-
-
Method Details
-
write
- Specified by:
writein interfacePacket<ClientPlayPacketListener>- Mappings:
Namespace Name Mixin selector official aLxg;a(Luj;)Vintermediary method_11052Lnet/minecraft/class_2596;method_11052(Lnet/minecraft/class_2540;)Vnamed writeLnet/minecraft/network/packet/Packet;write(Lnet/minecraft/network/PacketByteBuf;)V
-
apply
- Specified by:
applyin interfacePacket<ClientPlayPacketListener>- Mappings:
Namespace Name Mixin selector official aLabk;a(Lzb;)Vintermediary method_11769Lnet/minecraft/class_2718;method_11769(Lnet/minecraft/class_2602;)Vnamed applyLnet/minecraft/network/packet/s2c/play/RemoveEntityStatusEffectS2CPacket;apply(Lnet/minecraft/network/listener/ClientPlayPacketListener;)V
-
getEntity
- Mappings:
Namespace Name Mixin selector official aLabk;a(Lctx;)Lblw;intermediary method_11767Lnet/minecraft/class_2718;method_11767(Lnet/minecraft/class_1937;)Lnet/minecraft/class_1297;named getEntityLnet/minecraft/network/packet/s2c/play/RemoveEntityStatusEffectS2CPacket;getEntity(Lnet/minecraft/world/World;)Lnet/minecraft/entity/Entity;
-
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 '=='. -
entityId
public int entityId()Returns the value of theentityIdrecord component.- Returns:
- the value of the
entityIdrecord component
-
effectType
Returns the value of theeffectTyperecord component.- Returns:
- the value of the
effectTyperecord component
-