Uses of Class
picocli.CommandLine.Model.UnmatchedArgsBinding
Packages that use CommandLine.Model.UnmatchedArgsBinding
Package
Description
Provides classes and interfaces for the main picocli command line parsing and
autocompletion
functionality.-
Uses of CommandLine.Model.UnmatchedArgsBinding in picocli
Methods in picocli that return CommandLine.Model.UnmatchedArgsBindingModifier and TypeMethodDescriptionCommandLine.Model.UnmatchedArgsBinding.forStringArrayConsumer
(CommandLine.Model.ISetter setter) Creates aUnmatchedArgsBinding
for a setter that consumesString[]
objects.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.UnmatchedArgsBindingModifier and TypeMethodDescriptionCommandLine.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.UnmatchedArgsBindingModifier and TypeMethodDescriptionCommandLine.Model.CommandSpec.addUnmatchedArgsBinding
(CommandLine.Model.UnmatchedArgsBinding spec) Adds the specifiedUnmatchedArgsBinding
to the list of model objects to capture unmatched arguments for this command.