Uses of Class
picocli.CommandLine.Model.Messages
-
Packages that use CommandLine.Model.Messages Package Description picocli Provides classes and interfaces for the main picocli command line parsing andautocompletion
functionality. -
-
Uses of CommandLine.Model.Messages in picocli
Fields in picocli declared as CommandLine.Model.Messages Modifier and Type Field Description private CommandLine.Model.Messages
CommandLine.Model.ArgGroupSpec. messages
private CommandLine.Model.Messages
CommandLine.Model.ArgSpec. messages
private CommandLine.Model.Messages
CommandLine.Model.UsageMessageSpec. messages
Methods in picocli that return CommandLine.Model.Messages Modifier and Type Method Description static CommandLine.Model.Messages
CommandLine.Model.Messages. copy(CommandLine.Model.CommandSpec spec, CommandLine.Model.Messages original)
Returns a copy of the specified Messages object with the CommandSpec replaced by the specified one.CommandLine.Model.Messages
CommandLine.Model.ArgGroupSpec. messages()
Returns the Messages for this argument group specification, ornull
.CommandLine.Model.Messages
CommandLine.Model.ArgSpec. messages()
Returns the Messages for this arg specification, ornull
.CommandLine.Model.Messages
CommandLine.Model.UsageMessageSpec. messages()
Returns the Messages for this usage help message specification, ornull
.Methods in picocli with parameters of type CommandLine.Model.Messages Modifier and Type Method Description static CommandLine.Model.Messages
CommandLine.Model.Messages. copy(CommandLine.Model.CommandSpec spec, CommandLine.Model.Messages original)
Returns a copy of the specified Messages object with the CommandSpec replaced by the specified one.static boolean
CommandLine.Model.Messages. empty(CommandLine.Model.Messages messages)
Returnstrue
if the specifiedMessages
isnull
or has anull ResourceBundle
.CommandLine.Model.ArgGroupSpec
CommandLine.Model.ArgGroupSpec. messages(CommandLine.Model.Messages msgs)
Sets the Messages for this ArgGroupSpec, and returns this ArgGroupSpec.CommandLine.Model.ArgSpec
CommandLine.Model.ArgSpec. messages(CommandLine.Model.Messages msgs)
Sets the Messages for this ArgSpec, and returns this ArgSpec.CommandLine.Model.UsageMessageSpec
CommandLine.Model.UsageMessageSpec. messages(CommandLine.Model.Messages msgs)
Sets the Messages for this usageMessage specification, and returns this UsageMessageSpec.static java.util.ResourceBundle
CommandLine.Model.Messages. resourceBundle(CommandLine.Model.Messages messages)
Returns the ResourceBundle of the specified Messages object ornull
if the specified Messages object isnull
.static java.lang.String
CommandLine.Model.Messages. resourceBundleBaseName(CommandLine.Model.Messages messages)
Returns the ResourceBundle of the specified Messages object ornull
if the specified Messages object isnull
.
-