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 Summary
FieldsModifier and TypeFieldDescription(package private) static final Comparator<NetworkPacketSummary.PacketCountAndSize>private final longThe field for thetotalCountrecord component.private final longThe field for thetotalSizerecord component. -
Constructor Summary
ConstructorsConstructorDescriptionPacketCountAndSize(long totalCount, long totalSize) Creates an instance of aPacketCountAndSizerecord class. -
Method Summary
Modifier 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
-
totalCount
private final long totalCountThe field for thetotalCountrecord component. -
totalSize
private final long totalSizeThe field for thetotalSizerecord component. -
SIZE_THEN_COUNT
-
-
Constructor Details
-
PacketCountAndSize
public PacketCountAndSize(long totalCount, long totalSize) Creates an instance of aPacketCountAndSizerecord class.- Parameters:
totalCount- the value for thetotalCountrecord componenttotalSize- the value for thetotalSizerecord component
-
-
Method Details
-
add
-
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 with '=='. -
totalCount
public long totalCount()Returns the value of thetotalCountrecord component.- Returns:
- the value of the
totalCountrecord component
-
totalSize
public long totalSize()Returns the value of thetotalSizerecord component.- Returns:
- the value of the
totalSizerecord component
-