Record Class TelemetryEventWidget.Contents
java.lang.Object
java.lang.Record
net.minecraft.client.gui.screen.option.TelemetryEventWidget.Contents
- Record Components:
grid
-narration
-
- Enclosing class:
TelemetryEventWidget
@Environment(CLIENT)
private static record TelemetryEventWidget.Contents(LayoutWidget grid, Text narration)
extends Record
- Mappings:
Namespace Name named net/minecraft/client/gui/screen/option/TelemetryEventWidget$Contents
intermediary net/minecraft/class_7941$class_7942
official fsy$a
named grid
intermediary comp_1160
official a
named narration
intermediary comp_1161
official b
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.grid()
Returns the value of thegrid
record component.final int
hashCode()
Returns a hash code value for this object.Returns the value of thenarration
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
Contents
Contents(LayoutWidget layoutWidget, Text text)
-
-
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)
. -
grid
Returns the value of thegrid
record component.- Returns:
- the value of the
grid
record component
-
narration
Returns the value of thenarration
record component.- Returns:
- the value of the
narration
record component
-