Uses of Interface
org.apache.logging.log4j.core.tools.picocli.CommandLine.ITypeConverter
Packages that use CommandLine.ITypeConverter
-
Uses of CommandLine.ITypeConverter in org.apache.logging.log4j.core.tools.picocli
Classes in org.apache.logging.log4j.core.tools.picocli that implement CommandLine.ITypeConverterModifier and TypeClassDescription(package private) static class
(package private) static class
(package private) static class
Converts"true"
or"false"
to aBoolean
.(package private) static class
Converts text to aByte
by delegating toByte.valueOf(String)
.(package private) static class
(package private) static class
(package private) static class
(package private) static class
(package private) static class
(package private) static class
(package private) static class
Converts text to aInetAddress
by delegating toInetAddress.getByName(String)
.(package private) static class
Converts text to anInteger
by delegating toInteger.valueOf(String)
.(package private) static class
Converts text inyyyy-mm-dd
format to ajava.util.Date
.(package private) static class
Converts text in any of the following formats to ajava.sql.Time
:HH:mm
,HH:mm:ss
,HH:mm:ss.SSS
,HH:mm:ss,SSS
.(package private) static class
Converts text to aLong
by delegating toLong.valueOf(String)
.(package private) static class
(package private) static class
(package private) static class
Converts text to aShort
by delegating toShort.valueOf(String)
.(package private) static class
(package private) static class
(package private) static class
(package private) static class
(package private) static class
Fields in org.apache.logging.log4j.core.tools.picocli with type parameters of type CommandLine.ITypeConverterModifier and TypeFieldDescriptionprivate final Map
<Class<?>, CommandLine.ITypeConverter<?>> CommandLine.Interpreter.converterRegistry
Methods in org.apache.logging.log4j.core.tools.picocli that return CommandLine.ITypeConverterModifier and TypeMethodDescriptionprivate CommandLine.ITypeConverter
<?> CommandLine.Interpreter.getTypeConverter
(Class<?> type, Field field) Methods in org.apache.logging.log4j.core.tools.picocli with parameters of type CommandLine.ITypeConverterModifier and TypeMethodDescriptionprivate void
CommandLine.Interpreter.consumeMapArguments
(Field field, CommandLine.Range arity, Stack<String> args, Class<?>[] classes, CommandLine.ITypeConverter<?> keyConverter, CommandLine.ITypeConverter<?> valueConverter, Map<Object, Object> result, String argDescription) private void
CommandLine.Interpreter.consumeOneMapArgument
(Field field, CommandLine.Range arity, Stack<String> args, Class<?>[] classes, CommandLine.ITypeConverter<?> keyConverter, CommandLine.ITypeConverter<?> valueConverter, Map<Object, Object> result, int index, String argDescription) <K> CommandLine
CommandLine.registerConverter
(Class<K> cls, CommandLine.ITypeConverter<K> converter) Registers the specified type converter for the specified class.private Object
CommandLine.Interpreter.tryConvert
(Field field, int index, CommandLine.ITypeConverter<?> converter, String value, Class<?> type)