Uses of Class
cloud.commandframework.arguments.standard.StringArgument.StringMode
-
Packages that use StringArgument.StringMode Package Description cloud.commandframework.arguments.standard Standard command argument types -
-
Uses of StringArgument.StringMode in cloud.commandframework.arguments.standard
Methods in cloud.commandframework.arguments.standard that return StringArgument.StringMode Modifier and Type Method Description @NonNull StringArgument.StringMode
StringArgument. getStringMode()
Get the string mode@NonNull StringArgument.StringMode
StringArgument.StringParseException. getStringMode()
Get the string mode@NonNull StringArgument.StringMode
StringArgument.StringParser. getStringMode()
Get the string modestatic StringArgument.StringMode
StringArgument.StringMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static StringArgument.StringMode[]
StringArgument.StringMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in cloud.commandframework.arguments.standard with parameters of type StringArgument.StringMode Modifier and Type Method Description static <C> @NonNull CommandArgument<C,String>
StringArgument. of(@NonNull String name, @NonNull StringArgument.StringMode stringMode)
Create a new required command argumentstatic <C> @NonNull CommandArgument<C,String>
StringArgument. optional(@NonNull String name, @NonNull StringArgument.StringMode stringMode)
Create a new optional command argumentConstructors in cloud.commandframework.arguments.standard with parameters of type StringArgument.StringMode Constructor Description StringParseException(@NonNull String input, @NonNull StringArgument.StringMode stringMode, @NonNull CommandContext<?> context)
Construct a new string parse exceptionStringParser(@NonNull StringArgument.StringMode stringMode, @NonNull BiFunction<@NonNull CommandContext<C>,@NonNull String,@NonNull List<@NonNull String>> suggestionsProvider)
Construct a new string parser
-