Package net.minecraft.client.gui.tooltip
Record Class ProfilesTooltipComponent.ProfilesData
java.lang.Object
java.lang.Record
net.minecraft.client.gui.tooltip.ProfilesTooltipComponent.ProfilesData
- Record Components:
profiles
-
- All Implemented Interfaces:
TooltipData
- Enclosing class:
ProfilesTooltipComponent
@Environment(CLIENT)
public static record ProfilesTooltipComponent.ProfilesData(List<com.mojang.authlib.yggdrasil.ProfileResult> profiles)
extends Record
implements TooltipData
- Mappings:
Namespace Name named net/minecraft/client/gui/tooltip/ProfilesTooltipComponent$ProfilesData
intermediary net/minecraft/class_9805$class_9806
official fqk$a
named profiles
intermediary comp_2848
official a
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.List
<com.mojang.authlib.yggdrasil.ProfileResult> profiles()
Returns the value of theprofiles
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
profiles
The field for theprofiles
record component.
-
-
Constructor Details
-
ProfilesData
-
-
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)
. -
profiles
Returns the value of theprofiles
record component.- Returns:
- the value of the
profiles
record component
-