Record Class LoginQueryResponseC2SPacket
java.lang.Object
java.lang.Record
net.minecraft.network.packet.c2s.login.LoginQueryResponseC2SPacket
- Record Components:
queryId
-response
-
- All Implemented Interfaces:
Packet<ServerLoginPacketListener>
public record LoginQueryResponseC2SPacket(int queryId, @Nullable LoginQueryResponsePayload response)
extends Record
implements Packet<ServerLoginPacketListener>
- Mappings:
Namespace Name named net/minecraft/network/packet/c2s/login/LoginQueryResponseC2SPacket
intermediary net/minecraft/class_2913
official ajl
named queryId
intermediary comp_1569
official b
named response
intermediary comp_1570
official c
-
Field Summary
Modifier and TypeFieldDescriptionstatic final PacketCodec
<PacketByteBuf, LoginQueryResponseC2SPacket> private static final int
private final int
The field for thequeryId
record component.private final @Nullable LoginQueryResponsePayload
The field for theresponse
record component. -
Constructor Summary
ConstructorDescriptionLoginQueryResponseC2SPacket
(int int2, @Nullable LoginQueryResponsePayload loginQueryResponsePayload) -
Method Summary
Modifier and TypeMethodDescriptionvoid
apply
(ServerLoginPacketListener serverLoginPacketListener) final boolean
Indicates whether some other object is "equal to" this one.private static LoginQueryResponsePayload
final int
hashCode()
Returns a hash code value for this object.int
queryId()
Returns the value of thequeryId
record component.private static LoginQueryResponseC2SPacket
read
(PacketByteBuf buf) private static LoginQueryResponsePayload
readPayload
(int queryId, PacketByteBuf buf) Returns the response payload read frombuf
.response()
Returns the value of theresponse
record component.final String
toString()
Returns a string representation of this record class.private void
write
(PacketByteBuf buf) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.network.packet.Packet
isWritingErrorSkippable, transitionsNetworkState
-
Field Details
-
queryId
private final int queryIdThe field for thequeryId
record component. -
response
The field for theresponse
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/network/packet/c2s/login/LoginQueryResponseC2SPacket;CODEC:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_48249
Lnet/minecraft/class_2913;field_48249:Lnet/minecraft/class_9139;
official a
Lajl;a:Lzn;
-
MAX_PAYLOAD_SIZE
private static final int MAX_PAYLOAD_SIZE- See Also:
- Mappings:
Namespace Name Mixin selector named MAX_PAYLOAD_SIZE
Lnet/minecraft/network/packet/c2s/login/LoginQueryResponseC2SPacket;MAX_PAYLOAD_SIZE:I
intermediary field_33374
Lnet/minecraft/class_2913;field_33374:I
official d
Lajl;d:I
-
-
Constructor Details
-
LoginQueryResponseC2SPacket
public LoginQueryResponseC2SPacket(int int2, @Nullable @Nullable LoginQueryResponsePayload loginQueryResponsePayload)
-
-
Method Details
-
read
- Mappings:
Namespace Name Mixin selector named read
Lnet/minecraft/network/packet/c2s/login/LoginQueryResponseC2SPacket;read(Lnet/minecraft/network/PacketByteBuf;)Lnet/minecraft/network/packet/c2s/login/LoginQueryResponseC2SPacket;
intermediary method_52292
Lnet/minecraft/class_2913;method_52292(Lnet/minecraft/class_2540;)Lnet/minecraft/class_2913;
official a
Lajl;a(Lwm;)Lajl;
-
readPayload
Returns the response payload read frombuf
.- Returns:
- the response payload read from
buf
- Implementation Note:
- This delegates the logic to
getVanillaPayload(net.minecraft.network.PacketByteBuf)
, which simply validates the size of the buffer and returnsUnknownLoginQueryResponsePayload.INSTANCE
. - Mappings:
Namespace Name Mixin selector named readPayload
Lnet/minecraft/network/packet/c2s/login/LoginQueryResponseC2SPacket;readPayload(ILnet/minecraft/network/PacketByteBuf;)Lnet/minecraft/network/packet/c2s/login/LoginQueryResponsePayload;
intermediary method_52290
Lnet/minecraft/class_2913;method_52290(ILnet/minecraft/class_2540;)Lnet/minecraft/class_8594;
official a
Lajl;a(ILwm;)Lajp;
-
getVanillaPayload
- Mappings:
Namespace Name Mixin selector named getVanillaPayload
Lnet/minecraft/network/packet/c2s/login/LoginQueryResponseC2SPacket;getVanillaPayload(Lnet/minecraft/network/PacketByteBuf;)Lnet/minecraft/network/packet/c2s/login/LoginQueryResponsePayload;
intermediary method_52293
Lnet/minecraft/class_2913;method_52293(Lnet/minecraft/class_2540;)Lnet/minecraft/class_8594;
official b
Lajl;b(Lwm;)Lajp;
-
write
- Mappings:
Namespace Name Mixin selector named write
Lnet/minecraft/network/packet/c2s/login/LoginQueryResponseC2SPacket;write(Lnet/minecraft/network/PacketByteBuf;)V
intermediary method_11052
Lnet/minecraft/class_2913;method_11052(Lnet/minecraft/class_2540;)V
official c
Lajl;c(Lwm;)V
-
getPacketId
- Specified by:
getPacketId
in interfacePacket<ServerLoginPacketListener>
- Mappings:
Namespace Name Mixin selector named getPacketId
Lnet/minecraft/network/packet/Packet;getPacketId()Lnet/minecraft/network/packet/PacketType;
intermediary method_55846
Lnet/minecraft/class_2596;method_55846()Lnet/minecraft/class_9145;
official a
Lzw;a()Lzy;
-
apply
- Specified by:
apply
in interfacePacket<ServerLoginPacketListener>
- Mappings:
Namespace Name Mixin selector named apply
Lnet/minecraft/network/packet/c2s/login/LoginQueryResponseC2SPacket;apply(Lnet/minecraft/network/listener/ServerLoginPacketListener;)V
intermediary method_12645
Lnet/minecraft/class_2913;method_12645(Lnet/minecraft/class_2911;)V
official a
Lajl;a(Lajk;)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 thequeryId
record component.- Returns:
- the value of the
queryId
record component
-
response
Returns the value of theresponse
record component.- Returns:
- the value of the
response
record component
-