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 - fzg$a- named - grid- intermediary - comp_1160- official - a- named - narration- intermediary - comp_1161- official - b
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.grid()Returns the value of thegridrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of thenarrationrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details
- 
Constructor Details- 
ContentsContents(LayoutWidget layoutWidget, Text text) 
 
- 
- 
Method Details- 
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 withObjects::equals(Object,Object).
- 
gridReturns the value of thegridrecord component.- Returns:
- the value of the gridrecord component
 
- 
narrationReturns the value of thenarrationrecord component.- Returns:
- the value of the narrationrecord component
 
 
-