| java.lang.Object org.apache.commons.beanutils.locale.BaseLocaleConverter org.apache.commons.beanutils.locale.converters.StringLocaleConverter
Constructor Summary | |
public | StringLocaleConverter() Create a
org.apache.commons.beanutils.locale.LocaleConverter that will throw a
org.apache.commons.beanutils.ConversionException if a conversion error occurs. | public | StringLocaleConverter(boolean locPattern) Create a
org.apache.commons.beanutils.locale.LocaleConverter that will throw a
org.apache.commons.beanutils.ConversionException if a conversion error occurs. | public | StringLocaleConverter(Locale locale) Create a
org.apache.commons.beanutils.locale.LocaleConverter that will throw a
org.apache.commons.beanutils.ConversionException if a conversion error occurs. | public | StringLocaleConverter(Locale locale, boolean locPattern) Create a
org.apache.commons.beanutils.locale.LocaleConverter that will throw a
org.apache.commons.beanutils.ConversionException if a conversion error occurs. | public | StringLocaleConverter(Locale locale, String pattern) Create a
org.apache.commons.beanutils.locale.LocaleConverter that will throw a
org.apache.commons.beanutils.ConversionException if a conversion error occurs. | public | StringLocaleConverter(Locale locale, String pattern, boolean locPattern) Create a
org.apache.commons.beanutils.locale.LocaleConverter that will throw a
org.apache.commons.beanutils.ConversionException if a conversion error occurs. | public | StringLocaleConverter(Object defaultValue) Create a
org.apache.commons.beanutils.locale.LocaleConverter that will return the specified default value
if a conversion error occurs. | public | StringLocaleConverter(Object defaultValue, boolean locPattern) Create a
org.apache.commons.beanutils.locale.LocaleConverter that will return the specified default value
if a conversion error occurs. | public | StringLocaleConverter(Object defaultValue, Locale locale) Create a
org.apache.commons.beanutils.locale.LocaleConverter that will return the specified default value
if a conversion error occurs. | public | StringLocaleConverter(Object defaultValue, Locale locale, boolean locPattern) Create a
org.apache.commons.beanutils.locale.LocaleConverter that will return the specified default value
if a conversion error occurs. | public | StringLocaleConverter(Object defaultValue, Locale locale, String pattern) Create a
org.apache.commons.beanutils.locale.LocaleConverter that will return the specified default value
if a conversion error occurs. | public | StringLocaleConverter(Object defaultValue, Locale locale, String pattern, boolean locPattern) Create a
org.apache.commons.beanutils.locale.LocaleConverter that will return the specified default value
if a conversion error occurs. |
Method Summary | |
protected Object | parse(Object value, String pattern) Convert the specified locale-sensitive input object into an output object of the
specified type. |
StringLocaleConverter | public StringLocaleConverter(Object defaultValue)(Code) | | Create a
org.apache.commons.beanutils.locale.LocaleConverter that will return the specified default value
if a conversion error occurs. The locale is the default locale for
this instance of the Java Virtual Machine and an unlocalized pattern is used
for the convertion.
Parameters: defaultValue - The default value to be returned |
StringLocaleConverter | public StringLocaleConverter(Object defaultValue, boolean locPattern)(Code) | | Create a
org.apache.commons.beanutils.locale.LocaleConverter that will return the specified default value
if a conversion error occurs. The locale is the default locale for
this instance of the Java Virtual Machine.
Parameters: defaultValue - The default value to be returned Parameters: locPattern - Indicate whether the pattern is localized or not |
StringLocaleConverter | public StringLocaleConverter(Object defaultValue, Locale locale)(Code) | | Create a
org.apache.commons.beanutils.locale.LocaleConverter that will return the specified default value
if a conversion error occurs. An unlocalized pattern is used for the convertion.
Parameters: defaultValue - The default value to be returned Parameters: locale - The locale |
StringLocaleConverter | public StringLocaleConverter(Object defaultValue, Locale locale, boolean locPattern)(Code) | | Create a
org.apache.commons.beanutils.locale.LocaleConverter that will return the specified default value
if a conversion error occurs.
Parameters: defaultValue - The default value to be returned Parameters: locale - The locale Parameters: locPattern - Indicate whether the pattern is localized or not |
StringLocaleConverter | public StringLocaleConverter(Object defaultValue, Locale locale, String pattern)(Code) | | Create a
org.apache.commons.beanutils.locale.LocaleConverter that will return the specified default value
if a conversion error occurs. An unlocalized pattern is used for the convertion.
Parameters: defaultValue - The default value to be returned Parameters: locale - The locale Parameters: pattern - The convertion pattern |
StringLocaleConverter | public StringLocaleConverter(Object defaultValue, Locale locale, String pattern, boolean locPattern)(Code) | | Create a
org.apache.commons.beanutils.locale.LocaleConverter that will return the specified default value
if a conversion error occurs.
Parameters: defaultValue - The default value to be returned Parameters: locale - The locale Parameters: pattern - The convertion pattern Parameters: locPattern - Indicate whether the pattern is localized or not |
|
|