Uses of Interface
picocli.CommandLine.IParameterConsumer
-
Packages that use CommandLine.IParameterConsumer Package Description picocli Provides classes and interfaces for the main picocli command line parsing andautocompletion
functionality.picocli.codegen.annotation.processing -
-
Uses of CommandLine.IParameterConsumer in picocli
Classes in picocli that implement CommandLine.IParameterConsumer Modifier and Type Class Description private static class
CommandLine.NullParameterConsumer
Fields in picocli declared as CommandLine.IParameterConsumer Modifier and Type Field Description private CommandLine.IParameterConsumer
CommandLine.Model.ArgSpec.Builder. parameterConsumer
private CommandLine.IParameterConsumer
CommandLine.Model.ArgSpec. parameterConsumer
Methods in picocli that return CommandLine.IParameterConsumer Modifier and Type Method Description (package private) static CommandLine.IParameterConsumer
CommandLine.DefaultFactory. createParameterConsumer(CommandLine.IFactory factory, java.lang.Class<? extends CommandLine.IParameterConsumer> cls)
CommandLine.IParameterConsumer
CommandLine.Model.ArgSpec.Builder. parameterConsumer()
Returns the custom parameter handler for this option or positional parameter, ornull
.CommandLine.IParameterConsumer
CommandLine.Model.ArgSpec. parameterConsumer()
Returns a customIParameterConsumer
to temporarily suspend picocli's parsing logic and process one or more command line arguments in a custom manner, ornull
.Methods in picocli that return types with arguments of type CommandLine.IParameterConsumer Modifier and Type Method Description java.lang.Class<? extends CommandLine.IParameterConsumer>
parameterConsumer()
Optionally specify a customIParameterConsumer
to temporarily suspend picocli's parsing logic and process one or more command line arguments in a custom manner.java.lang.Class<? extends CommandLine.IParameterConsumer>
parameterConsumer()
Optionally specify a customIParameterConsumer
to temporarily suspend picocli's parsing logic and process one or more command line arguments in a custom manner.Methods in picocli with parameters of type CommandLine.IParameterConsumer Modifier and Type Method Description T
CommandLine.Model.ArgSpec.Builder. parameterConsumer(CommandLine.IParameterConsumer parameterConsumer)
Sets the parameterConsumer for this option or positional parameter, and returns this builder.Method parameters in picocli with type arguments of type CommandLine.IParameterConsumer Modifier and Type Method Description (package private) static CommandLine.IParameterConsumer
CommandLine.DefaultFactory. createParameterConsumer(CommandLine.IFactory factory, java.lang.Class<? extends CommandLine.IParameterConsumer> cls)
-
Uses of CommandLine.IParameterConsumer in picocli.codegen.annotation.processing
Classes in picocli.codegen.annotation.processing that implement CommandLine.IParameterConsumer Modifier and Type Class Description (package private) class
ParameterConsumerMetaData
Implementation of theCommandLine.IParameterConsumer
interface that provides metadata on the@Option(parameterConsumer = xxx.class)
annotation.
-