Uses of Interface
joptsimple.ValueConverter
Packages that use ValueConverter
-
Uses of ValueConverter in joptsimple
Fields in joptsimple declared as ValueConverterModifier and TypeFieldDescriptionprivate ValueConverter<V> ArgumentAcceptingOptionSpec.converterprivate ValueConverter<V> NonOptionArgumentSpec.converterMethods in joptsimple with parameters of type ValueConverterModifier and TypeMethodDescriptionprotected StringAbstractOptionSpec.argumentTypeIndicatorFrom(ValueConverter<V> converter) protected VAbstractOptionSpec.convertWith(ValueConverter<V> converter, String argument) final <T> ArgumentAcceptingOptionSpec<T> ArgumentAcceptingOptionSpec.withValuesConvertedBy(ValueConverter<T> aConverter) Specifies a converter to use to translate arguments of this spec's option into Java objects.final <T> NonOptionArgumentSpec<T> NonOptionArgumentSpec.withValuesConvertedBy(ValueConverter<T> aConverter) Specifies a converter to use to translate non-option arguments into Java objects. -
Uses of ValueConverter in joptsimple.internal
Classes in joptsimple.internal that implement ValueConverterModifier and TypeClassDescription(package private) class(package private) classMethods in joptsimple.internal that return ValueConverterModifier and TypeMethodDescriptionprivate static <V> ValueConverter<V> Reflection.constructorConverter(Class<V> clazz) static <V> ValueConverter<V> Reflection.findConverter(Class<V> clazz) Finds an appropriate value converter for the given class.private static <V> ValueConverter<V> Reflection.valueOfConverter(Class<V> clazz) Methods in joptsimple.internal with parameters of type ValueConverterModifier and TypeMethodDescriptionstatic <V> VReflection.convertWith(ValueConverter<V> converter, String raw) -
Uses of ValueConverter in joptsimple.util
Classes in joptsimple.util that implement ValueConverterModifier and TypeClassDescriptionclassConverts values toDates using aDateFormatobject.classEnumConverter<E extends Enum<E>>Converts values toEnums.classConverts values toInetAddressusinggetByName.classConverts command line options toPathobjects and checks the status of the underlying file.classEnsures that values entirely match a regular expression.Methods in joptsimple.util that return ValueConverterModifier and TypeMethodDescriptionstatic ValueConverter<String> Gives a matcher that uses the given regular expression.