Uses of Interface
picocli.CommandLine.IParameterPreprocessor
-
Packages that use CommandLine.IParameterPreprocessor Package Description picocli Provides classes and interfaces for the main picocli command line parsing andautocompletion
functionality. -
-
Uses of CommandLine.IParameterPreprocessor in picocli
Classes in picocli that implement CommandLine.IParameterPreprocessor Modifier and Type Class Description private static class
CommandLine.NoOpParameterPreprocessor
Fields in picocli declared as CommandLine.IParameterPreprocessor Modifier and Type Field Description private CommandLine.IParameterPreprocessor
CommandLine.Model.ArgSpec.Builder. preprocessor
private CommandLine.IParameterPreprocessor
CommandLine.Model.ArgSpec. preprocessor
private CommandLine.IParameterPreprocessor
CommandLine.Model.CommandSpec. preprocessor
Methods in picocli that return CommandLine.IParameterPreprocessor Modifier and Type Method Description CommandLine.IParameterPreprocessor
CommandLine.Model.ArgSpec.Builder. preprocessor()
Returns the customIParameterPreprocessor
to either replace or complement picocli's parsing logic for the parameter(s) of this option or position, ornull
.CommandLine.IParameterPreprocessor
CommandLine.Model.ArgSpec. preprocessor()
Returns a customIParameterPreprocessor
to either replace or complement picocli's parsing logic for the parameter(s) of this option or position.CommandLine.IParameterPreprocessor
CommandLine.Model.CommandSpec. preprocessor()
Returns the preprocessor for this CommandSpec instance.Methods in picocli that return types with arguments of type CommandLine.IParameterPreprocessor Modifier and Type Method Description java.lang.Class<? extends CommandLine.IParameterPreprocessor>
preprocessor()
Returns the preprocessor for this command.java.lang.Class<? extends CommandLine.IParameterPreprocessor>
preprocessor()
Returns the preprocessor for this option.java.lang.Class<? extends CommandLine.IParameterPreprocessor>
preprocessor()
Returns the preprocessor for this positional parameter.Methods in picocli with parameters of type CommandLine.IParameterPreprocessor Modifier and Type Method Description (package private) void
CommandLine.Model.CommandSpec. initPreprocessor(CommandLine.IParameterPreprocessor value)
T
CommandLine.Model.ArgSpec.Builder. preprocessor(CommandLine.IParameterPreprocessor preprocessor)
Sets the customIParameterPreprocessor
for this option or position, and returns this builder.CommandLine.Model.CommandSpec
CommandLine.Model.CommandSpec. preprocessor(CommandLine.IParameterPreprocessor preprocessor)
Sets the preprocessor for this CommandSpec instance.Method parameters in picocli with type arguments of type CommandLine.IParameterPreprocessor Modifier and Type Method Description (package private) void
CommandLine.Model.CommandSpec. updatePreprocessor(java.lang.Class<? extends CommandLine.IParameterPreprocessor> value, CommandLine.IFactory factory)
-