Record Class NetworkIoStatistics.Packet
java.lang.Object
java.lang.Record
net.minecraft.util.profiling.jfr.sample.NetworkIoStatistics.Packet
- Record Components:
- side-
- protocolId-
- packetId-
- Enclosing class:
- NetworkIoStatistics
public static record NetworkIoStatistics.Packet(NetworkSide side, int protocolId, int packetId)
extends Record
- Mappings:
- Namespace - Name - official - axw$b- intermediary - net/minecraft/class_6767$class_6769- named - net/minecraft/util/profiling/jfr/sample/NetworkIoStatistics$Packet- official - a- intermediary - comp_259- named - side- official - b- intermediary - comp_260- named - protocolId- official - c- intermediary - comp_261- named - packetId
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate static final Map<NetworkIoStatistics.Packet,String> private final intThe field for thepacketIdrecord component.private final intThe field for theprotocolIdrecord component.private final NetworkSideThe field for thesiderecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.static NetworkIoStatistics.PacketfromEvent(RecordedEvent event) getName()final inthashCode()Returns a hash code value for this object.intpacketId()Returns the value of thepacketIdrecord component.intReturns the value of theprotocolIdrecord component.side()Returns the value of thesiderecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
sideThe field for thesiderecord component.
- 
protocolIdprivate final int protocolIdThe field for theprotocolIdrecord component.
- 
packetIdprivate final int packetIdThe field for thepacketIdrecord component.
- 
PACKET_TO_NAME- Mappings:
- Namespace - Name - Mixin selector - official - d- Laxw$b;d:Ljava/util/Map;- intermediary - field_35587- Lnet/minecraft/class_6767$class_6769;field_35587:Ljava/util/Map;- named - PACKET_TO_NAME- Lnet/minecraft/util/profiling/jfr/sample/NetworkIoStatistics$Packet;PACKET_TO_NAME:Ljava/util/Map;
 
 
- 
- 
Constructor Details- 
Packet
 
- 
- 
Method Details- 
getName- Mappings:
- Namespace - Name - Mixin selector - official - a- Laxw$b;a()Ljava/lang/String;- intermediary - method_39445- Lnet/minecraft/class_6767$class_6769;method_39445()Ljava/lang/String;- named - getName- Lnet/minecraft/util/profiling/jfr/sample/NetworkIoStatistics$Packet;getName()Ljava/lang/String;
 
- 
fromEvent- Mappings:
- Namespace - Name - Mixin selector - official - a- Laxw$b;a(Ljdk/jfr/consumer/RecordedEvent;)Laxw$b;- intermediary - method_39447- Lnet/minecraft/class_6767$class_6769;method_39447(Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/class_6767$class_6769;- named - fromEvent- Lnet/minecraft/util/profiling/jfr/sample/NetworkIoStatistics$Packet;fromEvent(Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/sample/NetworkIoStatistics$Packet;
 
- 
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='.
- 
sideReturns the value of thesiderecord component.- Returns:
- the value of the siderecord component
 
- 
protocolIdpublic int protocolId()Returns the value of theprotocolIdrecord component.- Returns:
- the value of the protocolIdrecord component
 
- 
packetIdpublic int packetId()Returns the value of thepacketIdrecord component.- Returns:
- the value of the packetIdrecord component
 
 
-