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 private IStringConverter<?>JCommander. findConverterInstance(Parameter parameter, java.lang.Class<?> forType, java.lang.String optionName)IStringConverter<?>IStringConverterInstanceFactory. getConverterInstance(Parameter parameter, java.lang.Class<?> forType, java.lang.String optionName)Obtain a converter instance for parsingparameteras typeforTypeMethods 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 classBaseConverter<T>Base class for converters that store the name of the option.classBigDecimalConverterConverts a String to a BigDecimal.classBooleanConverterConverts a string to a boolean.classCharArrayConverterConverts a String to a char[].classDefaultListConverter<T>A converter to obtain a list of elements.classDoubleConverterConvert a string to a double.classEnumConverter<T extends java.lang.Enum<T>>A converter to parse enumsclassFileConverterConvert a string into a file.classFloatConverterConvert a string to a float.classInetAddressConverterConvertsStrings toInetAddress'.classIntegerConverterConvert a string to an integer.classISO8601DateConverterConverts a String to a Date.classLongConverterConvert a string to a long.classNoConverterDefault value for a converter when none is specified.classPathConverterConvert a string into a path.classStringConverterDefault converter for strings.classURIConverterConvert a string into a URI.classURLConverterConvert a string into a URI.Fields in com.beust.jcommander.converters declared as IStringConverter Modifier and Type Field Description private IStringConverter<T>DefaultListConverter. converterConstructors 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
Fields in com.beust.jcommander.internal with type parameters of type IStringConverter Modifier and Type Field Description private static java.util.Map<java.lang.Class,java.lang.Class<? extends IStringConverter<?>>>DefaultConverterFactory. classConvertersA map of converters per class.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)
-