Uses of Class
net.kyori.adventure.text.minimessage.internal.parser.node.ElementNode
Packages that use ElementNode
-
Uses of ElementNode in net.kyori.adventure.text.minimessage.internal.parser.node
Subclasses of ElementNode in net.kyori.adventure.text.minimessage.internal.parser.nodeModifier and TypeClassDescriptionfinal classRepresents the root node of a tree.final classNode that represents a tag.final classRepresents a string of chars.classRepresents a node in the tree which has a text value.Methods in net.kyori.adventure.text.minimessage.internal.parser.node that return ElementNodeModifier and TypeMethodDescription@Nullable ElementNodeElementNode.parent()Returns the parent of this node, if present.Methods in net.kyori.adventure.text.minimessage.internal.parser.node that return types with arguments of type ElementNodeModifier and TypeMethodDescriptionElementNode.children()Returns the children of this node.ElementNode.unsafeChildren()Returns an unsafe view of the children of this node.Methods in net.kyori.adventure.text.minimessage.internal.parser.node with parameters of type ElementNodeModifier and TypeMethodDescriptionvoidElementNode.addChild(ElementNode childNode) Adds a child to this node.Constructors in net.kyori.adventure.text.minimessage.internal.parser.node with parameters of type ElementNodeModifierConstructorDescriptionTagNode(ElementNode parent, Token token, String sourceMessage, TokenParser.TagProvider tagProvider) Creates a new element node.TextNode(@Nullable ElementNode parent, Token token, String sourceMessage) Creates a new text node.