Record Class CpuLoadStat
java.lang.Object
java.lang.Record
net.minecraft.util.profiling.jfr.stats.CpuLoadStat
- 
Field SummaryFields
- 
Constructor SummaryConstructorsConstructorDescriptionCpuLoadStat(double jvm, double userJvm, double system) Creates an instance of aCpuLoadStatrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.static CpuLoadStatfrom(RecordedEvent p_185623_) final inthashCode()Returns a hash code value for this object.doublejvm()Returns the value of thejvmrecord component.doublesystem()Returns the value of thesystemrecord component.final StringtoString()Returns a string representation of this record class.doubleuserJvm()Returns the value of theuserJvmrecord component.
- 
Field Details- 
jvmprivate final double jvmThe field for thejvmrecord component.
- 
userJvmprivate final double userJvmThe field for theuserJvmrecord component.
- 
systemprivate final double systemThe field for thesystemrecord component.
 
- 
- 
Constructor Details- 
CpuLoadStatpublic CpuLoadStat(double jvm, double userJvm, double system) Creates an instance of aCpuLoadStatrecord class.- Parameters:
- jvm- the value for the- jvmrecord component
- userJvm- the value for the- userJvmrecord component
- system- the value for the- systemrecord component
 
 
- 
- 
Method Details- 
from
- 
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. All components in this record class are compared with '=='.
- 
jvmpublic double jvm()Returns the value of thejvmrecord component.- Returns:
- the value of the jvmrecord component
 
- 
userJvmpublic double userJvm()Returns the value of theuserJvmrecord component.- Returns:
- the value of the userJvmrecord component
 
- 
systempublic double system()Returns the value of thesystemrecord component.- Returns:
- the value of the systemrecord component
 
 
-