Uses of Interface
joptsimple.ValueConverter

Packages that use ValueConverter
joptsimple   
joptsimple.internal   
joptsimple.util   
 

Uses of ValueConverter in joptsimple
 

Fields in joptsimple declared as ValueConverter
private  ValueConverter<V> ArgumentAcceptingOptionSpec.converter
           
 

Methods in joptsimple with parameters of type ValueConverter
<T> ArgumentAcceptingOptionSpec<T>
ArgumentAcceptingOptionSpec.withValuesConvertedBy(ValueConverter<T> aConverter)
          Specifies a converter to use to translate arguments of this spec's option into Java objects.
 

Uses of ValueConverter in joptsimple.internal
 

Classes in joptsimple.internal that implement ValueConverter
(package private)  class ConstructorInvokingValueConverter<V>
           
(package private)  class MethodInvokingValueConverter<V>
           
 

Methods in joptsimple.internal that return ValueConverter
private static
<V> ValueConverter<V>
Reflection.constructorConverter(java.lang.Class<V> clazz)
           
static
<V> ValueConverter<V>
Reflection.findConverter(java.lang.Class<V> clazz)
          Finds an appropriate value converter for the given class.
private static
<V> ValueConverter<V>
Reflection.valueOfConverter(java.lang.Class<V> clazz)
           
 

Uses of ValueConverter in joptsimple.util
 

Classes in joptsimple.util that implement ValueConverter
 class DateConverter
          Converts values to Dates using a DateFormat object.
 class RegexMatcher
          Ensures that values entirely match a regular expression.
 

Methods in joptsimple.util that return ValueConverter
static ValueConverter<java.lang.String> RegexMatcher.regex(java.lang.String pattern)
          Gives a matcher that uses the given regular expression.