Record Class GuiNavigationPath.IntermediaryNode
java.lang.Object
java.lang.Record
net.minecraft.client.gui.navigation.GuiNavigationPath.IntermediaryNode
- Record Components:
- component-
- childPath-
- All Implemented Interfaces:
- GuiNavigationPath
- Enclosing interface:
- GuiNavigationPath
@Environment(CLIENT)
public static record GuiNavigationPath.IntermediaryNode(ParentElement component, GuiNavigationPath childPath)
extends Record
implements GuiNavigationPath
- Mappings:
- Namespace - Name - named - net/minecraft/client/gui/navigation/GuiNavigationPath$IntermediaryNode- intermediary - net/minecraft/class_8016$class_8018- official - foc$b- named - component- intermediary - comp_1189- official - a- named - childPath- intermediary - comp_1190- official - b
- 
Nested Class SummaryNested classes/interfaces inherited from interface net.minecraft.client.gui.navigation.GuiNavigationPathGuiNavigationPath.IntermediaryNode, GuiNavigationPath.Leaf
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final GuiNavigationPathThe field for thechildPathrecord component.private final ParentElementThe field for thecomponentrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionIntermediaryNode(ParentElement parentElement, GuiNavigationPath guiNavigationPath) 
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of thechildPathrecord component.Returns 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.voidsetFocused(boolean focused) Sets whether the path is focused.final StringtoString()Returns a string representation of this record class.
- 
Field Details
- 
Constructor Details
- 
Method Details- 
setFocusedpublic void setFocused(boolean focused) Sets whether the path is focused. This propagates to children.- Specified by:
- setFocusedin interface- GuiNavigationPath
- Mappings:
- Namespace - Name - Mixin selector - named - setFocused- Lnet/minecraft/client/gui/navigation/GuiNavigationPath;setFocused(Z)V- intermediary - method_48195- Lnet/minecraft/class_8016;method_48195(Z)V- official - a- Lfoc;a(Z)V
 
- 
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).
- 
componentReturns the value of thecomponentrecord component.- Specified by:
- componentin interface- GuiNavigationPath
- Returns:
- the value of the componentrecord component
 
- 
childPathReturns the value of thechildPathrecord component.- Returns:
- the value of the childPathrecord component
 
 
-