Uses of Interface
org.apache.commons.cli.Converter
-
Uses of Converter in org.apache.commons.cli
Modifier and TypeFieldDescriptionstatic final Converter<Class<?>,
ClassNotFoundException> Converter.CLASS
Class name converter.static final Converter<Date,
ParseException> Converter.DATE
Converts to a date using the format string Form "EEE MMM dd HH:mm:ss zzz yyyy".static final Converter<?,
RuntimeException> Converter.DEFAULT
The default converter.static final Converter<File,
NullPointerException> Converter.FILE
File name converter.static final Converter<Number,
NumberFormatException> Converter.NUMBER
Number converter.static final Converter<Object,
ReflectiveOperationException> Converter.OBJECT
Converts a class name to an instance of the class.static final Converter<Path,
InvalidPathException> Converter.PATH
Path converter.static final Converter<URL,
MalformedURLException> Converter.URL
Creates a URL.Modifier and TypeMethodDescriptionConverter<?,
?> Option.getConverter()
Gets the value to type converter.<T> Converter<T,
?> TypeHandler.getConverter
(Class<T> clazz) Gets the registered converter for the the Class, orDEFAULT
if absent.Modifier and TypeMethodDescriptionTypeHandler.createDefaultMap()
Creates a default converter map.Modifier and TypeMethodDescriptionSets the converter for the option.void
Option.setConverter
(Converter<?, ?> converter) Sets the value to type converter.ModifierConstructorDescriptionTypeHandler
(Map<Class<?>, Converter<?, ? extends Throwable>> converterMap) Constructs a default initialized instance.