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 andautocompletionfunctionality.picocli.codegen.annotation.processing -
-
Uses of CommandLine.IParameterConsumer in picocli
Classes in picocli that implement CommandLine.IParameterConsumer Modifier and Type Class Description private static classCommandLine.NullParameterConsumerFields in picocli declared as CommandLine.IParameterConsumer Modifier and Type Field Description private CommandLine.IParameterConsumerCommandLine.Model.ArgSpec.Builder. parameterConsumerprivate CommandLine.IParameterConsumerCommandLine.Model.ArgSpec. parameterConsumerMethods in picocli that return CommandLine.IParameterConsumer Modifier and Type Method Description (package private) static CommandLine.IParameterConsumerCommandLine.DefaultFactory. createParameterConsumer(CommandLine.IFactory factory, java.lang.Class<? extends CommandLine.IParameterConsumer> cls)CommandLine.IParameterConsumerCommandLine.Model.ArgSpec.Builder. parameterConsumer()Returns the custom parameter handler for this option or positional parameter, ornull.CommandLine.IParameterConsumerCommandLine.Model.ArgSpec. parameterConsumer()Returns a customIParameterConsumerto 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 customIParameterConsumerto 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 customIParameterConsumerto 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 TCommandLine.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.IParameterConsumerCommandLine.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) classParameterConsumerMetaDataImplementation of theCommandLine.IParameterConsumerinterface that provides metadata on the@Option(parameterConsumer = xxx.class)annotation.
-