Record Class IoSummary.CountAndSize
java.lang.Object
java.lang.Record
net.minecraft.util.profiling.jfr.stats.IoSummary.CountAndSize
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) 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 p_335537_) 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
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
-