Uses of Class
picocli.CommandLine.Model.UnmatchedArgsBinding
-
Packages that use CommandLine.Model.UnmatchedArgsBinding Package Description picocli Provides classes and interfaces for the main picocli command line parsing andautocompletion
functionality. -
-
Uses of CommandLine.Model.UnmatchedArgsBinding in picocli
Methods in picocli that return CommandLine.Model.UnmatchedArgsBinding Modifier and Type Method Description static CommandLine.Model.UnmatchedArgsBinding
CommandLine.Model.UnmatchedArgsBinding. forStringArrayConsumer(CommandLine.Model.ISetter setter)
Creates aUnmatchedArgsBinding
for a setter that consumesString[]
objects.static CommandLine.Model.UnmatchedArgsBinding
CommandLine.Model.UnmatchedArgsBinding. forStringCollectionSupplier(CommandLine.Model.IGetter getter)
Creates aUnmatchedArgsBinding
for a getter that produces aCollection<String>
that the unmatched arguments can be added to.Methods in picocli that return types with arguments of type CommandLine.Model.UnmatchedArgsBinding Modifier and Type Method Description List<CommandLine.Model.UnmatchedArgsBinding>
CommandLine.Model.CommandSpec. unmatchedArgsBindings()
Returns the list ofUnmatchedArgumentsBindings
configured for this command; eachUnmatchedArgsBinding
captures the arguments that could not be matched to any options or positional parameters.Methods in picocli with parameters of type CommandLine.Model.UnmatchedArgsBinding Modifier and Type Method Description CommandLine.Model.CommandSpec
CommandLine.Model.CommandSpec. addUnmatchedArgsBinding(CommandLine.Model.UnmatchedArgsBinding spec)
Adds the specifiedUnmatchedArgsBinding
to the list of model objects to capture unmatched arguments for this command.
-