Record Class NetworkIoStatistics.PacketStatistics
java.lang.Object
java.lang.Record
net.minecraft.util.profiling.jfr.sample.NetworkIoStatistics.PacketStatistics
- Record Components:
totalCount
-totalSize
-
- Enclosing class:
NetworkIoStatistics
public static record NetworkIoStatistics.PacketStatistics(long totalCount, long totalSize)
extends Record
- Mappings:
Namespace Name official bbk$a
intermediary net/minecraft/class_6767$class_6768
named net/minecraft/util/profiling/jfr/sample/NetworkIoStatistics$PacketStatistics
official a
intermediary comp_257
named totalCount
official b
intermediary comp_258
named totalSize
-
Field Summary
Modifier and TypeFieldDescription(package private) static final Comparator<NetworkIoStatistics.PacketStatistics>
private final long
The field for thetotalCount
record component.private final long
The field for thetotalSize
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescription(package private) NetworkIoStatistics.PacketStatistics
add
(NetworkIoStatistics.PacketStatistics statistics) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.long
Returns the value of thetotalCount
record component.long
Returns the value of thetotalSize
record component.
-
Field Details
-
totalCount
private final long totalCountThe field for thetotalCount
record component. -
totalSize
private final long totalSizeThe field for thetotalSize
record component. -
COMPARATOR
- Mappings:
Namespace Name Mixin selector official c
Lbbk$a;c:Ljava/util/Comparator;
intermediary field_35586
Lnet/minecraft/class_6767$class_6768;field_35586:Ljava/util/Comparator;
named COMPARATOR
Lnet/minecraft/util/profiling/jfr/sample/NetworkIoStatistics$PacketStatistics;COMPARATOR:Ljava/util/Comparator;
-
-
Constructor Details
-
PacketStatistics
public PacketStatistics(long long2, long long3)
-
-
Method Details
-
add
- Mappings:
Namespace Name Mixin selector official a
Lbbk$a;a(Lbbk$a;)Lbbk$a;
intermediary method_39444
Lnet/minecraft/class_6767$class_6768;method_39444(Lnet/minecraft/class_6767$class_6768;)Lnet/minecraft/class_6767$class_6768;
named add
Lnet/minecraft/util/profiling/jfr/sample/NetworkIoStatistics$PacketStatistics;add(Lnet/minecraft/util/profiling/jfr/sample/NetworkIoStatistics$PacketStatistics;)Lnet/minecraft/util/profiling/jfr/sample/NetworkIoStatistics$PacketStatistics;
-
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 thetotalCount
record component.- Returns:
- the value of the
totalCount
record component
-
totalSize
public long totalSize()Returns the value of thetotalSize
record component.- Returns:
- the value of the
totalSize
record component
-