Uses of Interface
dev.jorel.commandapi.arguments.parser.ParserArgument
Packages that use ParserArgument
-
Uses of ParserArgument in dev.jorel.commandapi.arguments
Methods in dev.jorel.commandapi.arguments that return ParserArgumentModifier and TypeMethodDescriptionstatic ParserArgument<String> ArgumentUtilities.readUntilWithoutEscapeCharacter(char terminator) Returns a newParserArgumentthat reads characters from the inputStringReaderuntil it reaches the given terminator character. -
Uses of ParserArgument in dev.jorel.commandapi.arguments.parser
Classes in dev.jorel.commandapi.arguments.parser that implement ParserArgumentModifier and TypeClassDescriptionstatic final recordAParserArgumentthat also places suggestions at the cursor of theStringReaderwhen invoked.Methods in dev.jorel.commandapi.arguments.parser that return ParserArgumentModifier and TypeMethodDescriptionstatic <T> ParserArgument<T> Parser.argument(ParserArgument<T> parser) Directly returns theParserArgumentgiven.ParserArgument.WithSuggestions.base()Returns the value of thebaserecord component.Methods in dev.jorel.commandapi.arguments.parser with parameters of type ParserArgumentModifier and TypeMethodDescriptionstatic <T> ParserArgument<T> Parser.argument(ParserArgument<T> parser) Directly returns theParserArgumentgiven.Constructors in dev.jorel.commandapi.arguments.parser with parameters of type ParserArgumentModifierConstructorDescriptionWithSuggestions(ParserArgument<T> base, SuggestionProvider suggestions) Creates an instance of aWithSuggestionsrecord class.