Record Class WorldScreenOptionGrid.TooltipBoxDisplay
java.lang.Object
java.lang.Record
net.minecraft.client.gui.screen.world.WorldScreenOptionGrid.TooltipBoxDisplay
- Record Components:
- maxInfoRows-
- alwaysMaxHeight-
- Enclosing class:
- WorldScreenOptionGrid
@Environment(CLIENT)
private static record WorldScreenOptionGrid.TooltipBoxDisplay(int maxInfoRows, boolean alwaysMaxHeight)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/client/gui/screen/world/WorldScreenOptionGrid$TooltipBoxDisplay- intermediary - net/minecraft/class_8096$class_8135- official - fzu$b- named - maxInfoRows- intermediary - comp_1259- official - a- named - alwaysMaxHeight- intermediary - comp_1260- official - b
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final booleanThe field for thealwaysMaxHeightrecord component.private final intThe field for themaxInfoRowsrecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbooleanReturns the value of thealwaysMaxHeightrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intReturns the value of themaxInfoRowsrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
maxInfoRowsprivate final int maxInfoRowsThe field for themaxInfoRowsrecord component.
- 
alwaysMaxHeightprivate final boolean alwaysMaxHeightThe field for thealwaysMaxHeightrecord component.
 
- 
- 
Constructor Details- 
TooltipBoxDisplayTooltipBoxDisplay(int int2, boolean bool) 
 
- 
- 
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 with '=='.
- 
maxInfoRowspublic int maxInfoRows()Returns the value of themaxInfoRowsrecord component.- Returns:
- the value of the maxInfoRowsrecord component
 
- 
alwaysMaxHeightpublic boolean alwaysMaxHeight()Returns the value of thealwaysMaxHeightrecord component.- Returns:
- the value of the alwaysMaxHeightrecord component
 
 
-