Record Class ComponentPath.Leaf
java.lang.Object
java.lang.Record
net.minecraft.client.gui.ComponentPath.Leaf
- All Implemented Interfaces:
ComponentPath
- Enclosing interface:
ComponentPath
public static record ComponentPath.Leaf(GuiEventListener component)
extends Record
implements ComponentPath
The
Leaf class represents a leaf component path in the hierarchy.-
Nested Class Summary
Nested classes/interfaces inherited from interface ComponentPath
ComponentPath.Leaf, ComponentPath.Path -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final GuiEventListenerThe field for thecomponentrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionLeaf(GuiEventListener component) Creates an instance of aLeafrecord class. -
Method Summary
Modifier and TypeMethodDescriptionvoidapplyFocus(boolean focused) Applies focus to or removes focus from the component associated with this leaf path. focusedtrueto apply focus,falseto remove focusReturns the value of thecomponentrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
component
The field for thecomponentrecord component.
-
-
Constructor Details
-
Leaf
Creates an instance of aLeafrecord class.- Parameters:
component- the value for thecomponentrecord component
-
-
Method Details
-
applyFocus
public void applyFocus(boolean focused) Applies focus to or removes focus from the component associated with this leaf path. focusedtrueto apply focus,falseto remove focus- Specified by:
applyFocusin interfaceComponentPath- Parameters:
focused-trueto apply focus,falseto remove focus.
-
toString
-
hashCode
-
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). -
component
Returns the value of thecomponentrecord component.- Specified by:
componentin interfaceComponentPath- Returns:
- the value of the
componentrecord component
-