Uses of Interface
picocli.CommandLine.ITypeConverter
-
Packages that use CommandLine.ITypeConverter Package Description picocli Provides classes and interfaces for the main picocli command line parsing andautocompletion
functionality. -
-
Uses of CommandLine.ITypeConverter in picocli
Classes in picocli that implement CommandLine.ITypeConverter Modifier and Type Class Description static class
CommandLine.UseDefaultConverter
Converter that can be used to signal to picocli that it should use the default converter.Methods in picocli that return CommandLine.ITypeConverter Modifier and Type Method Description CommandLine.ITypeConverter<?>[]
CommandLine.Model.ArgSpec. converters()
Returns one or moretype converters
to use to convert the command line argument into a strongly typed value (or key-value pair for map fields).Methods in picocli that return types with arguments of type CommandLine.ITypeConverter Modifier and Type Method Description Class<? extends CommandLine.ITypeConverter<?>>[]
converter()
Optionally specify one or moreCommandLine.ITypeConverter
classes to use to convert the command line argument into a strongly typed value (or key-value pair for map fields).Class<? extends CommandLine.ITypeConverter<?>>[]
converter()
Optionally specify one or moreCommandLine.ITypeConverter
classes to use to convert the command line argument into a strongly typed value (or key-value pair for map fields).Methods in picocli with parameters of type CommandLine.ITypeConverter Modifier and Type Method Description <K> CommandLine
CommandLine. registerConverter(Class<K> cls, CommandLine.ITypeConverter<K> converter)
Registers the specified type converter for the specified class.
-