Package lumis.util.converter
Class ConverterDefaultParameterDecorator
- java.lang.Object
-
- lumis.util.converter.ConverterDefaultParameterDecorator
-
- All Implemented Interfaces:
IConverter
public class ConverterDefaultParameterDecorator extends Object implements IConverter
Decorates aIConverter
allowing to define default parameters that are used when not specified.- Since:
- 4.0.4
- Version:
- $Revision: 6251 $ $Date: 2007-03-27 10:49:29 -0300 (Tue, 27 Mar 2007) $
-
-
Constructor Summary
Constructors Constructor Description ConverterDefaultParameterDecorator(IConverter converter, Locale defaultLocale, String defaultPattern)
Creates a new decorator for the given converter that uses the default parameters given.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> T
convert(Class<T> type, Object value)
Converts the specified input object into an output object of the specified type.<T> T
convert(Class<T> type, Object value, Locale locale)
Converts the specified input object into an output object of the specified type.<T> T
convert(Class<T> type, Object value, Locale locale, String pattern)
Converts the specified input object into an output object of the specified type.
-
-
-
Constructor Detail
-
ConverterDefaultParameterDecorator
public ConverterDefaultParameterDecorator(IConverter converter, Locale defaultLocale, String defaultPattern)
Creates a new decorator for the given converter that uses the default parameters given.- Parameters:
converter
- the converter to be decorated.defaultLocale
- the default locale to use when the locale is not specified.defaultPattern
- the default pattern to use when the pattern is not specified.- Since:
- 4.0.4
-
-
Method Detail
-
convert
public <T> T convert(Class<T> type, Object value, Locale locale, String pattern)
Description copied from interface:IConverter
Converts the specified input object into an output object of the specified type.- Specified by:
convert
in interfaceIConverter
- Type Parameters:
T
- generics support for the data type specified.- Parameters:
type
- data type to which the value should be converted.value
- the input value to be converted.locale
- locale to be used during conversion, if necessary.pattern
- converter specific conversion pattern, to be used during conversion, if necessary.
-
convert
public <T> T convert(Class<T> type, Object value, Locale locale)
Description copied from interface:IConverter
Converts the specified input object into an output object of the specified type.- Specified by:
convert
in interfaceIConverter
- Type Parameters:
T
- generics support for the data type specified.- Parameters:
type
- data type to which the value should be converted.value
- the input value to be converted.locale
- locale to be used during conversion
-
convert
public <T> T convert(Class<T> type, Object value)
Description copied from interface:IConverter
Converts the specified input object into an output object of the specified type.- Specified by:
convert
in interfaceIConverter
- Type Parameters:
T
- generics support for the data type specified.- Parameters:
type
- data type to which the value should be converted.value
- the input value to be converted.
-
-