Record Class ThreadAllocationStatisticsSample.AllocationMap
java.lang.Object
java.lang.Record
net.minecraft.util.profiling.jfr.sample.ThreadAllocationStatisticsSample.AllocationMap
- Record Components:
allocations
-
- Enclosing class:
ThreadAllocationStatisticsSample
public static record ThreadAllocationStatisticsSample.AllocationMap(Map<String,Double> allocations)
extends Record
- Mappings:
Namespace Name official bbl$a
intermediary net/minecraft/class_6530$class_6531
named net/minecraft/util/profiling/jfr/sample/ThreadAllocationStatisticsSample$AllocationMap
official a
intermediary comp_51
named allocations
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theallocations
record component.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.
-
Field Details
-
allocations
The field for theallocations
record component.
-
-
Constructor Details
-
AllocationMap
-
-
Method Details
-
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 withObjects::equals(Object,Object)
. -
allocations
Returns the value of theallocations
record component.- Returns:
- the value of the
allocations
record component
-