Record Class LoginQueryRequestS2CPacket
java.lang.Object
java.lang.Record
net.minecraft.network.packet.s2c.login.LoginQueryRequestS2CPacket
- Record Components:
queryId-payload-
- All Implemented Interfaces:
Packet<ClientLoginPacketListener>
public record LoginQueryRequestS2CPacket(int queryId, LoginQueryRequestPayload payload)
extends Record
implements Packet<ClientLoginPacketListener>
- Mappings:
Namespace Name official acyintermediary net/minecraft/class_2899named net/minecraft/network/packet/s2c/login/LoginQueryRequestS2CPacketofficial aintermediary comp_1567named queryIdofficial bintermediary comp_1568named payload
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final intprivate final LoginQueryRequestPayloadThe field for thepayloadrecord component.private final intThe field for thequeryIdrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionLoginQueryRequestS2CPacket(int queryId, LoginQueryRequestPayload loginQueryRequestPayload) -
Method Summary
Modifier and TypeMethodDescriptionvoidapply(ClientLoginPacketListener clientLoginPacketListener) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.payload()Returns the value of thepayloadrecord component.intqueryId()Returns the value of thequeryIdrecord component.private static UnknownLoginQueryRequestPayloadreadPayload(Identifier id, PacketByteBuf buf) private static UnknownLoginQueryRequestPayloadreadUnknownPayload(Identifier id, PacketByteBuf buf) 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
-
queryId
private final int queryIdThe field for thequeryIdrecord component. -
payload
The field for thepayloadrecord component. -
MAX_PAYLOAD_SIZE
private static final int MAX_PAYLOAD_SIZE- See Also:
- Mappings:
Namespace Name Mixin selector official cLacy;c:Iintermediary field_33373Lnet/minecraft/class_2899;field_33373:Inamed MAX_PAYLOAD_SIZELnet/minecraft/network/packet/s2c/login/LoginQueryRequestS2CPacket;MAX_PAYLOAD_SIZE:I
-
-
Constructor Details
-
LoginQueryRequestS2CPacket
- Mappings:
Namespace Name Mixin selector official <init>Lacy;<init>(Lsh;)Vintermediary <init>Lnet/minecraft/class_2899;<init>(Lnet/minecraft/class_2540;)Vnamed <init>Lnet/minecraft/network/packet/s2c/login/LoginQueryRequestS2CPacket;<init>(Lnet/minecraft/network/PacketByteBuf;)V
-
LoginQueryRequestS2CPacket
- Mappings:
Namespace Name Mixin selector official <init>Lacy;<init>(ILadj;)Vintermediary <init>Lnet/minecraft/class_2899;<init>(ILnet/minecraft/class_8595;)Vnamed <init>Lnet/minecraft/network/packet/s2c/login/LoginQueryRequestS2CPacket;<init>(ILnet/minecraft/network/packet/s2c/login/LoginQueryRequestPayload;)V
-
-
Method Details
-
readPayload
- Mappings:
Namespace Name Mixin selector official aLacy;a(Laep;Lsh;)Ladl;intermediary method_52287Lnet/minecraft/class_2899;method_52287(Lnet/minecraft/class_2960;Lnet/minecraft/class_2540;)Lnet/minecraft/class_8597;named readPayloadLnet/minecraft/network/packet/s2c/login/LoginQueryRequestS2CPacket;readPayload(Lnet/minecraft/util/Identifier;Lnet/minecraft/network/PacketByteBuf;)Lnet/minecraft/network/packet/s2c/login/UnknownLoginQueryRequestPayload;
-
readUnknownPayload
- Mappings:
Namespace Name Mixin selector official bLacy;b(Laep;Lsh;)Ladl;intermediary method_52288Lnet/minecraft/class_2899;method_52288(Lnet/minecraft/class_2960;Lnet/minecraft/class_2540;)Lnet/minecraft/class_8597;named readUnknownPayloadLnet/minecraft/network/packet/s2c/login/LoginQueryRequestS2CPacket;readUnknownPayload(Lnet/minecraft/util/Identifier;Lnet/minecraft/network/PacketByteBuf;)Lnet/minecraft/network/packet/s2c/login/UnknownLoginQueryRequestPayload;
-
write
- Specified by:
writein interfacePacket<ClientLoginPacketListener>- Mappings:
Namespace Name Mixin selector official aLuw;a(Lsh;)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<ClientLoginPacketListener>- Mappings:
Namespace Name Mixin selector official aLacy;a(Lacx;)Vintermediary method_12591Lnet/minecraft/class_2899;method_12591(Lnet/minecraft/class_2896;)Vnamed applyLnet/minecraft/network/packet/s2c/login/LoginQueryRequestS2CPacket;apply(Lnet/minecraft/network/listener/ClientLoginPacketListener;)V
-
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 '=='. -
queryId
public int queryId()Returns the value of thequeryIdrecord component.- Returns:
- the value of the
queryIdrecord component
-
payload
Returns the value of thepayloadrecord component.- Returns:
- the value of the
payloadrecord component
-