Class CommandLine.BuiltIn.URIConverter
- java.lang.Object
-
- org.apache.logging.log4j.core.tools.picocli.CommandLine.BuiltIn.URIConverter
-
- All Implemented Interfaces:
CommandLine.ITypeConverter<java.net.URI>
- Enclosing class:
- CommandLine.BuiltIn
static class CommandLine.BuiltIn.URIConverter extends java.lang.Object implements CommandLine.ITypeConverter<java.net.URI>
-
-
Constructor Summary
Constructors Constructor Description URIConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.net.URIconvert(java.lang.String value)Converts the specified command line argument value to some domain object.
-
-
-
Method Detail
-
convert
public java.net.URI convert(java.lang.String value) throws java.net.URISyntaxExceptionDescription copied from interface:CommandLine.ITypeConverterConverts the specified command line argument value to some domain object.- Specified by:
convertin interfaceCommandLine.ITypeConverter<java.net.URI>- Parameters:
value- the command line argument String value- Returns:
- the resulting domain object
- Throws:
java.net.URISyntaxException
-
-