Uses of Class
net.kyori.adventure.text.minimessage.internal.parser.Token
Packages that use Token
Package
Description
Parser.
Token consumers.
Parser nodes.
-
Uses of Token in net.kyori.adventure.text.minimessage.internal.parser
Methods in net.kyori.adventure.text.minimessage.internal.parser that return TokenModifier and TypeMethodDescriptionToken[]ParsingExceptionImpl.tokens()Gets the tokens associated with this parsing error.Methods in net.kyori.adventure.text.minimessage.internal.parser that return types with arguments of type TokenModifier and TypeMethodDescriptionToken.childTokens()Returns the children of this token.Tokenize a minimessage string into a list of tokens.Methods in net.kyori.adventure.text.minimessage.internal.parser with parameters of type TokenModifier and TypeMethodDescription@Nullable TagTokenParser.TagProvider.resolve(String name, List<? extends Tag.Argument> trimmedArgs, @Nullable Token token) Look up a tag.voidSets the tokens associated with this parsing error.Method parameters in net.kyori.adventure.text.minimessage.internal.parser with type arguments of type TokenModifier and TypeMethodDescriptionvoidToken.childTokens(List<Token> childTokens) Sets the children of this token.Constructors in net.kyori.adventure.text.minimessage.internal.parser with parameters of type TokenModifierConstructorDescriptionParsingExceptionImpl(String message, @Nullable String originalText, @Nullable Throwable cause, boolean withStackTrace, Token... tokens) Create a new parsing exception.ParsingExceptionImpl(String message, @Nullable String originalText, Token... tokens) Create a new parsing exception. -
Uses of Token in net.kyori.adventure.text.minimessage.internal.parser.match
Methods in net.kyori.adventure.text.minimessage.internal.parser.match that return types with arguments of type Token -
Uses of Token in net.kyori.adventure.text.minimessage.internal.parser.node
Methods in net.kyori.adventure.text.minimessage.internal.parser.node that return TokenModifier and TypeMethodDescription@Nullable TokenElementNode.token()Returns the token that lead to the creation of this token.TagNode.token()TagPart.token()Returns the token that created this tag part.ValueNode.token()Constructors in net.kyori.adventure.text.minimessage.internal.parser.node with parameters of type TokenModifierConstructorDescriptionTagNode(ElementNode parent, Token token, String sourceMessage, TokenParser.TagProvider tagProvider) Creates a new element node.TagPart(String sourceMessage, Token token, TokenParser.TagProvider tagResolver) Constructs a new tag part.TextNode(@Nullable ElementNode parent, Token token, String sourceMessage) Creates a new text node.