| org.apache.commons.beanutils.locale.LocaleConverter
All known Subclasses: org.apache.commons.beanutils.locale.BaseLocaleConverter,
LocaleConverter | public interface LocaleConverter extends Converter(Code) | | General purpose locale-sensitive data type converter that can be registered and used
within the BeanUtils package to manage the conversion of objects from
one type to another.
author: Yauheny Mikulski |
Method Summary | |
public Object | convert(Class type, Object value, String pattern) Convert the specified locale-sensitive input object into an output object of the
specified type.
Parameters: type - Data type to which this value should be converted Parameters: value - The input value to be converted Parameters: pattern - The user-defined pattern is used for the input object formatting. |
convert | public Object convert(Class type, Object value, String pattern)(Code) | | Convert the specified locale-sensitive input object into an output object of the
specified type.
Parameters: type - Data type to which this value should be converted Parameters: value - The input value to be converted Parameters: pattern - The user-defined pattern is used for the input object formatting. The converted value exception: org.apache.commons.beanutils.ConversionException - if conversioncannot be performed successfully |
|
|