static class |
ParameterConverters.AbstractChainableParameterConverter<T,S> |
static class |
ParameterConverters.AbstractListParameterConverter<T> |
static class |
ParameterConverters.AbstractParameterConverter<T> |
static class |
ParameterConverters.BooleanConverter |
static class |
ParameterConverters.BooleanListConverter |
static class |
ParameterConverters.CurrencyConverter |
static class |
ParameterConverters.DateConverter
Parses value to a Date using an injectable DateFormat
(defaults to new SimpleDateFormat("dd/MM/yyyy"))
|
static class |
ParameterConverters.EnumConverter
|
static class |
ParameterConverters.EnumListConverter
Parses value to list of the same Enum , using an injectable value
separator (defaults to ",") and trimming each element of the list.
|
static class |
ParameterConverters.ExamplesTableConverter
|
static class |
ParameterConverters.ExamplesTableParametersConverter
Converts ExamplesTable to list of parameters, mapped to annotated custom
types.
|
static class |
ParameterConverters.FileConverter |
static class |
ParameterConverters.FluentEnumConverter
|
static class |
ParameterConverters.FunctionalParameterConverter<T> |
static class |
ParameterConverters.JsonConverter |
static class |
ParameterConverters.MethodReturningConverter
Invokes method on instance to return value.
|
static class |
ParameterConverters.NumberConverter
Converts values to numbers, supporting any subclass of Number
(including generic Number type), and it unboxed counterpart, using a
NumberFormat to parse to a Number and to convert it to a
specific number type:
Byte, byte: Number.byteValue()
Short, short: Number.shortValue()
Integer, int: Number.intValue()
Float, float: Number.floatValue()
Long, long: Number.longValue()
Double, double: Number.doubleValue()
BigInteger: BigInteger.valueOf(long)
BigDecimal: BigDecimal.valueOf(double)
If no number format is provided, it defaults to
NumberFormat.getInstance() .
|
static class |
ParameterConverters.NumberListConverter
Converts value to list of numbers.
|
static class |
ParameterConverters.PatternConverter |
static class |
ParameterConverters.StringConverter |
static class |
ParameterConverters.StringListConverter
Converts value to list of String.
|
static class |
ParameterConverters.VerbatimConverter |