Record Class NetworkPacketSummary.PacketCountAndSize
java.lang.Object
java.lang.Record
net.minecraft.util.profiling.jfr.stats.NetworkPacketSummary.PacketCountAndSize
- Enclosing class:
- NetworkPacketSummary
public static record NetworkPacketSummary.PacketCountAndSize(long totalCount, long totalSize)
extends Record
- 
Field SummaryFieldsModifier and TypeFieldDescription(package private) static final Comparator<NetworkPacketSummary.PacketCountAndSize>private final longThe field for thetotalCountrecord component.private final longThe field for thetotalSizerecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionPacketCountAndSize(long totalCount, long totalSize) Creates an instance of aPacketCountAndSizerecord class.
- 
Method SummaryModifier and TypeMethodDescription(package private) NetworkPacketSummary.PacketCountAndSizeadd(NetworkPacketSummary.PacketCountAndSize p_185755_) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.longReturns the value of thetotalCountrecord component.longReturns the value of thetotalSizerecord component.
- 
Field Details- 
totalCountprivate final long totalCountThe field for thetotalCountrecord component.
- 
totalSizeprivate final long totalSizeThe field for thetotalSizerecord component.
- 
SIZE_THEN_COUNT
 
- 
- 
Constructor Details- 
PacketCountAndSizepublic PacketCountAndSize(long totalCount, long totalSize) Creates an instance of aPacketCountAndSizerecord class.- Parameters:
- totalCount- the value for the- totalCountrecord component
- totalSize- the value for the- totalSizerecord component
 
 
- 
- 
Method Details- 
add
- 
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 with '=='.
- 
totalCountpublic long totalCount()Returns the value of thetotalCountrecord component.- Returns:
- the value of the totalCountrecord component
 
- 
totalSizepublic long totalSize()Returns the value of thetotalSizerecord component.- Returns:
- the value of the totalSizerecord component
 
 
-