Uses of Interface
com.beust.jcommander.IStringConverter
-
Packages that use IStringConverter Package Description com.beust.jcommander com.beust.jcommander.converters com.beust.jcommander.internal -
-
Uses of IStringConverter in com.beust.jcommander
Methods in com.beust.jcommander that return IStringConverter Modifier and Type Method Description IStringConverter<?>
IStringConverterInstanceFactory. getConverterInstance(Parameter parameter, java.lang.Class<?> forType, java.lang.String optionName)
Obtain a converter instance for parsingparameter
as typeforType
Methods in com.beust.jcommander that return types with arguments of type IStringConverter Modifier and Type Method Description java.lang.Class<? extends IStringConverter<?>>
converter()
The string converter to use for this field.java.lang.Class<? extends IStringConverter<?>>
IStringConverterFactory. getConverter(java.lang.Class<?> forType)
java.lang.Class<? extends IStringConverter<?>>
listConverter()
The list string converter to use for this field. -
Uses of IStringConverter in com.beust.jcommander.converters
Classes in com.beust.jcommander.converters that implement IStringConverter Modifier and Type Class Description class
BaseConverter<T>
Base class for converters that store the name of the option.class
BigDecimalConverter
Converts a String to a BigDecimal.class
BooleanConverter
Converts a string to a boolean.class
ByteOrderConverter
Converts a String to aByteOrder
.class
CharArrayConverter
Converts a String to a char[].class
CharsetConverter
Converts a String to a Charset.class
DefaultListConverter<T>
A converter to obtain a list of elements.class
DoubleConverter
Convert a string to a double.class
EnumConverter<T extends java.lang.Enum<T>>
A converter to parse enumsclass
FileConverter
Convert a string into a file.class
FloatConverter
Convert a string to a float.class
InetAddressConverter
ConvertsString
s toInetAddress
'.class
IntegerConverter
Convert a string to an integer.class
ISO8601DateConverter
Converts a String to a Date.class
LongConverter
Convert a string to a long.class
NoConverter
Default value for a converter when none is specified.class
PathConverter
Convert a string into a path.class
StringConverter
Default converter for strings.class
URIConverter
Convert a string into a URI.class
URLConverter
Convert a string into a URI.Constructors in com.beust.jcommander.converters with parameters of type IStringConverter Constructor Description DefaultListConverter(IParameterSplitter splitter, IStringConverter<T> converter)
Constructs a new converter. -
Uses of IStringConverter in com.beust.jcommander.internal
Methods in com.beust.jcommander.internal that return types with arguments of type IStringConverter Modifier and Type Method Description java.lang.Class<? extends IStringConverter<?>>
DefaultConverterFactory. getConverter(java.lang.Class forType)
-