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 andautocompletionfunctionality. -
-
Uses of CommandLine.Model.UnmatchedArgsBinding in picocli
Methods in picocli that return CommandLine.Model.UnmatchedArgsBinding Modifier and Type Method Description static CommandLine.Model.UnmatchedArgsBindingCommandLine.Model.UnmatchedArgsBinding. forStringArrayConsumer(CommandLine.Model.ISetter setter)Creates aUnmatchedArgsBindingfor a setter that consumesString[]objects.static CommandLine.Model.UnmatchedArgsBindingCommandLine.Model.UnmatchedArgsBinding. forStringCollectionSupplier(CommandLine.Model.IGetter getter)Creates aUnmatchedArgsBindingfor 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 ofUnmatchedArgumentsBindingsconfigured for this command; eachUnmatchedArgsBindingcaptures 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.CommandSpecCommandLine.Model.CommandSpec. addUnmatchedArgsBinding(CommandLine.Model.UnmatchedArgsBinding spec)Adds the specifiedUnmatchedArgsBindingto the list of model objects to capture unmatched arguments for this command.
-