Record Class ClientboundDebugSamplePacket
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.game.ClientboundDebugSamplePacket
- All Implemented Interfaces:
- Packet<ClientGamePacketListener>
public record ClientboundDebugSamplePacket(long[] sample, RemoteDebugSampleType debugSampleType)
extends Record
implements Packet<ClientGamePacketListener>
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final RemoteDebugSampleTypeThe field for thedebugSampleTyperecord component.private final long[]The field for thesamplerecord component.static final StreamCodec<FriendlyByteBuf, ClientboundDebugSamplePacket> 
- 
Constructor SummaryConstructorsModifierConstructorDescriptionClientboundDebugSamplePacket(long[] sample, RemoteDebugSampleType debugSampleType) Creates an instance of aClientboundDebugSamplePacketrecord class.privateClientboundDebugSamplePacket(FriendlyByteBuf p_330326_) 
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of thedebugSampleTyperecord component.final booleanIndicates whether some other object is "equal to" this one.voidhandle(ClientGamePacketListener p_330875_) final inthashCode()Returns a hash code value for this object.long[]sample()Returns the value of thesamplerecord component.final StringtoString()Returns a string representation of this record class.type()private voidwrite(FriendlyByteBuf p_330431_) Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.network.protocol.PacketisSkippable, isTerminal
- 
Field Details- 
sampleprivate final long[] sampleThe field for thesamplerecord component.
- 
debugSampleTypeThe field for thedebugSampleTyperecord component.
- 
STREAM_CODEC
 
- 
- 
Constructor Details- 
ClientboundDebugSamplePacket
- 
ClientboundDebugSamplePacketCreates an instance of aClientboundDebugSamplePacketrecord class.- Parameters:
- sample- the value for the- samplerecord component
- debugSampleType- the value for the- debugSampleTyperecord component
 
 
- 
- 
Method Details- 
write
- 
type- Specified by:
- typein interface- Packet<ClientGamePacketListener>
 
- 
handle- Specified by:
- handlein interface- Packet<ClientGamePacketListener>
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
samplepublic long[] sample()Returns the value of thesamplerecord component.- Returns:
- the value of the samplerecord component
 
- 
debugSampleTypeReturns the value of thedebugSampleTyperecord component.- Returns:
- the value of the debugSampleTyperecord component
 
 
-