Record Class SwitchGrid.InfoUnderneathSettings
java.lang.Object
java.lang.Record
net.minecraft.client.gui.screens.worldselection.SwitchGrid.InfoUnderneathSettings
- Enclosing class:
SwitchGrid
static record SwitchGrid.InfoUnderneathSettings(int maxInfoRows, boolean alwaysMaxHeight)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final booleanThe field for thealwaysMaxHeightrecord component.private final intThe field for themaxInfoRowsrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionInfoUnderneathSettings(int maxInfoRows, boolean alwaysMaxHeight) Creates an instance of aInfoUnderneathSettingsrecord class. -
Method Summary
Modifier 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
-
maxInfoRows
private final int maxInfoRowsThe field for themaxInfoRowsrecord component. -
alwaysMaxHeight
private final boolean alwaysMaxHeightThe field for thealwaysMaxHeightrecord component.
-
-
Constructor Details
-
InfoUnderneathSettings
InfoUnderneathSettings(int maxInfoRows, boolean alwaysMaxHeight) Creates an instance of aInfoUnderneathSettingsrecord class.- Parameters:
maxInfoRows- the value for themaxInfoRowsrecord componentalwaysMaxHeight- the value for thealwaysMaxHeightrecord component
-
-
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 with '=='. -
maxInfoRows
public int maxInfoRows()Returns the value of themaxInfoRowsrecord component.- Returns:
- the value of the
maxInfoRowsrecord component
-
alwaysMaxHeight
public boolean alwaysMaxHeight()Returns the value of thealwaysMaxHeightrecord component.- Returns:
- the value of the
alwaysMaxHeightrecord component
-