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 official ahnintermediary net/minecraft/class_2913named net/minecraft/network/packet/c2s/login/LoginQueryResponseC2SPacketofficial bintermediary comp_1569named queryIdofficial cintermediary comp_1570named response
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final PacketCodec<PacketByteBuf, LoginQueryResponseC2SPacket> private static final intprivate final intThe field for thequeryIdrecord component.private final @Nullable LoginQueryResponsePayloadThe field for theresponserecord component. -
Constructor Summary
ConstructorsConstructorDescriptionLoginQueryResponseC2SPacket(int int2, @Nullable LoginQueryResponsePayload loginQueryResponsePayload) -
Method Summary
Modifier and TypeMethodDescriptionvoidapply(ServerLoginPacketListener serverLoginPacketListener) final booleanIndicates whether some other object is "equal to" this one.private static LoginQueryResponsePayloadfinal inthashCode()Returns a hash code value for this object.intqueryId()Returns the value of thequeryIdrecord component.private static LoginQueryResponseC2SPacketread(PacketByteBuf buf) private static LoginQueryResponsePayloadreadPayload(int queryId, PacketByteBuf buf) Returns the response payload read frombuf.response()Returns the value of theresponserecord component.final StringtoString()Returns a string representation of this record class.private 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
isWritingErrorSkippable, transitionsNetworkState
-
Field Details
-
queryId
private final int queryIdThe field for thequeryIdrecord component. -
response
The field for theresponserecord component. -
CODEC
- Mappings:
Namespace Name Mixin selector official aLahn;a:Lxs;intermediary field_48249Lnet/minecraft/class_2913;field_48249:Lnet/minecraft/class_9139;named CODECLnet/minecraft/network/packet/c2s/login/LoginQueryResponseC2SPacket;CODEC:Lnet/minecraft/network/codec/PacketCodec;
-
MAX_PAYLOAD_SIZE
private static final int MAX_PAYLOAD_SIZE- See Also:
- Mappings:
Namespace Name Mixin selector official dLahn;d:Iintermediary field_33374Lnet/minecraft/class_2913;field_33374:Inamed MAX_PAYLOAD_SIZELnet/minecraft/network/packet/c2s/login/LoginQueryResponseC2SPacket;MAX_PAYLOAD_SIZE:I
-
-
Constructor Details
-
LoginQueryResponseC2SPacket
public LoginQueryResponseC2SPacket(int int2, @Nullable @Nullable LoginQueryResponsePayload loginQueryResponsePayload)
-
-
Method Details
-
read
- Mappings:
Namespace Name Mixin selector official aLahn;a(Luu;)Lahn;intermediary method_52292Lnet/minecraft/class_2913;method_52292(Lnet/minecraft/class_2540;)Lnet/minecraft/class_2913;named readLnet/minecraft/network/packet/c2s/login/LoginQueryResponseC2SPacket;read(Lnet/minecraft/network/PacketByteBuf;)Lnet/minecraft/network/packet/c2s/login/LoginQueryResponseC2SPacket;
-
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 official aLahn;a(ILuu;)Lahr;intermediary method_52290Lnet/minecraft/class_2913;method_52290(ILnet/minecraft/class_2540;)Lnet/minecraft/class_8594;named readPayloadLnet/minecraft/network/packet/c2s/login/LoginQueryResponseC2SPacket;readPayload(ILnet/minecraft/network/PacketByteBuf;)Lnet/minecraft/network/packet/c2s/login/LoginQueryResponsePayload;
-
getVanillaPayload
- Mappings:
Namespace Name Mixin selector official bLahn;b(Luu;)Lahr;intermediary method_52293Lnet/minecraft/class_2913;method_52293(Lnet/minecraft/class_2540;)Lnet/minecraft/class_8594;named getVanillaPayloadLnet/minecraft/network/packet/c2s/login/LoginQueryResponseC2SPacket;getVanillaPayload(Lnet/minecraft/network/PacketByteBuf;)Lnet/minecraft/network/packet/c2s/login/LoginQueryResponsePayload;
-
write
- Mappings:
Namespace Name Mixin selector official cLahn;c(Luu;)Vintermediary method_11052Lnet/minecraft/class_2913;method_11052(Lnet/minecraft/class_2540;)Vnamed writeLnet/minecraft/network/packet/c2s/login/LoginQueryResponseC2SPacket;write(Lnet/minecraft/network/PacketByteBuf;)V
-
getPacketId
- Specified by:
getPacketIdin interfacePacket<ServerLoginPacketListener>- Mappings:
Namespace Name Mixin selector official aLyb;a()Lyd;intermediary method_55846Lnet/minecraft/class_2596;method_55846()Lnet/minecraft/class_9145;named getPacketIdLnet/minecraft/network/packet/Packet;getPacketId()Lnet/minecraft/network/packet/PacketType;
-
apply
- Specified by:
applyin interfacePacket<ServerLoginPacketListener>- Mappings:
Namespace Name Mixin selector official aLahn;a(Lahm;)Vintermediary method_12645Lnet/minecraft/class_2913;method_12645(Lnet/minecraft/class_2911;)Vnamed applyLnet/minecraft/network/packet/c2s/login/LoginQueryResponseC2SPacket;apply(Lnet/minecraft/network/listener/ServerLoginPacketListener;)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
-
response
Returns the value of theresponserecord component.- Returns:
- the value of the
responserecord component
-