Record Class ClientboundCustomReportDetailsPacket
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.common.ClientboundCustomReportDetailsPacket
- All Implemented Interfaces:
Packet<ClientCommonPacketListener>
-
Field Summary
Modifier and TypeFieldDescriptionThe field for thedetails
record component.private static final StreamCodec
<io.netty.buffer.ByteBuf, Map<String, String>> private static final int
private static final int
private static final int
static final StreamCodec
<io.netty.buffer.ByteBuf, ClientboundCustomReportDetailsPacket> -
Constructor Summary
ConstructorDescriptionClientboundCustomReportDetailsPacket
(Map<String, String> details) Creates an instance of aClientboundCustomReportDetailsPacket
record class. -
Method Summary
Modifier and TypeMethodDescriptiondetails()
Returns the value of thedetails
record component.final boolean
Indicates whether some other object is "equal to" this one.void
handle
(ClientCommonPacketListener p_344451_) final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.type()
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.network.protocol.Packet
isSkippable, isTerminal
-
Field Details
-
details
The field for thedetails
record component. -
MAX_DETAIL_KEY_LENGTH
private static final int MAX_DETAIL_KEY_LENGTH- See Also:
-
MAX_DETAIL_VALUE_LENGTH
private static final int MAX_DETAIL_VALUE_LENGTH- See Also:
-
MAX_DETAIL_COUNT
private static final int MAX_DETAIL_COUNT- See Also:
-
DETAILS_STREAM_CODEC
-
STREAM_CODEC
public static final StreamCodec<io.netty.buffer.ByteBuf,ClientboundCustomReportDetailsPacket> STREAM_CODEC
-
-
Constructor Details
-
ClientboundCustomReportDetailsPacket
Creates an instance of aClientboundCustomReportDetailsPacket
record class.- Parameters:
details
- the value for thedetails
record component
-
-
Method Details
-
type
- Specified by:
type
in interfacePacket<ClientCommonPacketListener>
-
handle
- Specified by:
handle
in interfacePacket<ClientCommonPacketListener>
-
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
details
Returns the value of thedetails
record component.- Returns:
- the value of the
details
record component
-