Record Class IoSummary.CountAndSize
java.lang.Object
java.lang.Record
net.minecraft.util.profiling.jfr.stats.IoSummary.CountAndSize
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final Comparator<IoSummary.CountAndSize> private final longThe field for thetotalCountrecord component.private final longThe field for thetotalSizerecord component. -
Constructor Summary
ConstructorsConstructorDescriptionCountAndSize(long totalCount, long totalSize) Creates an instance of aCountAndSizerecord class. -
Method Summary
Modifier and TypeMethodDescription(package private) IoSummary.CountAndSizeadd(IoSummary.CountAndSize that) floatfinal 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
-
CountAndSize
public CountAndSize(long totalCount, long totalSize) Creates an instance of aCountAndSizerecord class.- Parameters:
totalCount- the value for thetotalCountrecord componenttotalSize- the value for thetotalSizerecord component
-
-
Method Details
-
add
-
averageSize
public float averageSize() -
toString
-
hashCode
-
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 thecomparemethod from their corresponding wrapper classes. -
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
-