Class ClientboundGameProfilePacket
java.lang.Object
org.geysermc.mcprotocollib.protocol.packet.login.clientbound.ClientboundGameProfilePacket
- All Implemented Interfaces:
Packet,MinecraftPacket
-
Constructor Summary
ConstructorsConstructorDescriptionClientboundGameProfilePacket(@NonNull GameProfile profile, boolean strictErrorHandling) ClientboundGameProfilePacket(io.netty.buffer.ByteBuf in, MinecraftCodecHelper helper) -
Method Summary
Modifier and TypeMethodDescriptionprotected booleanboolean@NonNull GameProfileinthashCode()booleanGets whether the packet has handling priority.booleanbooleanReturns whether the packet is terminal.voidserialize(io.netty.buffer.ByteBuf out, MinecraftCodecHelper helper) @NonNull StringtoString()@NonNull ClientboundGameProfilePacketwithProfile(@NonNull GameProfile profile) @NonNull ClientboundGameProfilePacketwithStrictErrorHandling(boolean strictErrorHandling)
-
Constructor Details
-
ClientboundGameProfilePacket
-
ClientboundGameProfilePacket
public ClientboundGameProfilePacket(@NonNull @NonNull GameProfile profile, boolean strictErrorHandling)
-
-
Method Details
-
serialize
- Specified by:
serializein interfaceMinecraftPacket
-
isPriority
public boolean isPriority()Description copied from interface:PacketGets whether the packet has handling priority. If the result is true, the packet will be handled immediately after being decoded.- Specified by:
isPriorityin interfacePacket- Returns:
- Whether the packet has priority.
-
isTerminal
public boolean isTerminal()Description copied from interface:PacketReturns whether the packet is terminal. If true, this should be the last packet sent inside a protocol state. Subsequently,Session.setAutoRead(boolean)should be disabled when a terminal packet is received, until the session has switched into a new state and is ready to receive more packets.- Specified by:
isTerminalin interfacePacket- Returns:
- Whether the packet is terminal.
-
getProfile
-
isStrictErrorHandling
public boolean isStrictErrorHandling() -
equals
-
canEqual
-
hashCode
public int hashCode() -
toString
-
withProfile
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withStrictErrorHandling
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-