public class DateLocaleConverter extends BaseLocaleConverter
Standard LocaleConverter
implementation that converts an incoming
locale-sensitive String into a java.util.Date
object,
optionally using a default value or throwing a
ConversionException
if a conversion error occurs.
locale, locPattern, pattern, useDefault
Constructor and Description |
---|
DateLocaleConverter()
Create a
LocaleConverter
that will throw a ConversionException
if a conversion error occurs. |
DateLocaleConverter(boolean locPattern)
Create a
LocaleConverter
that will throw a ConversionException
if a conversion error occurs. |
DateLocaleConverter(Locale locale)
Create a
LocaleConverter
that will throw a ConversionException
if a conversion error occurs. |
DateLocaleConverter(Locale locale,
boolean locPattern)
Create a
LocaleConverter
that will throw a ConversionException
if a conversion error occurs. |
DateLocaleConverter(Locale locale,
String pattern)
Create a
LocaleConverter
that will throw a ConversionException
if a conversion error occurs. |
DateLocaleConverter(Locale locale,
String pattern,
boolean locPattern)
Create a
LocaleConverter
that will throw a ConversionException
if a conversion error occurs. |
DateLocaleConverter(Object defaultValue)
Create a
LocaleConverter
that will return the specified default value
if a conversion error occurs. |
DateLocaleConverter(Object defaultValue,
boolean locPattern)
Create a
LocaleConverter
that will return the specified default value
if a conversion error occurs. |
DateLocaleConverter(Object defaultValue,
Locale locale)
Create a
LocaleConverter
that will return the specified default value
if a conversion error occurs. |
DateLocaleConverter(Object defaultValue,
Locale locale,
boolean locPattern)
Create a
LocaleConverter
that will return the specified default value
if a conversion error occurs. |
DateLocaleConverter(Object defaultValue,
Locale locale,
String pattern)
Create a
LocaleConverter
that will return the specified default value
if a conversion error occurs. |
DateLocaleConverter(Object defaultValue,
Locale locale,
String pattern,
boolean locPattern)
Create a
LocaleConverter
that will return the specified default value
if a conversion error occurs. |
Modifier and Type | Method and Description |
---|---|
boolean |
isLenient()
Returns whether date formatting is lenient.
|
protected Object |
parse(Object value,
String pattern)
Convert the specified locale-sensitive input object into an output object of the
specified type.
|
void |
setLenient(boolean lenient)
Specify whether or not date-time parsing should be lenient.
|
convert, convert, convert, convert
public DateLocaleConverter()
LocaleConverter
that will throw a ConversionException
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.public DateLocaleConverter(boolean locPattern)
LocaleConverter
that will throw a ConversionException
if a conversion error occurs. The locale is the default locale for
this instance of the Java Virtual Machine.locPattern
- Indicate whether the pattern is localized or notpublic DateLocaleConverter(Locale locale)
LocaleConverter
that will throw a ConversionException
if a conversion error occurs. An unlocalized pattern is used for the convertion.locale
- The localepublic DateLocaleConverter(Locale locale, boolean locPattern)
LocaleConverter
that will throw a ConversionException
if a conversion error occurs.locale
- The localelocPattern
- Indicate whether the pattern is localized or notpublic DateLocaleConverter(Locale locale, String pattern)
LocaleConverter
that will throw a ConversionException
if a conversion error occurs. An unlocalized pattern is used for the convertion.locale
- The localepattern
- The convertion patternpublic DateLocaleConverter(Locale locale, String pattern, boolean locPattern)
LocaleConverter
that will throw a ConversionException
if a conversion error occurs.locale
- The localepattern
- The convertion patternlocPattern
- Indicate whether the pattern is localized or notpublic DateLocaleConverter(Object defaultValue)
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.defaultValue
- The default value to be returnedpublic DateLocaleConverter(Object defaultValue, boolean locPattern)
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.defaultValue
- The default value to be returnedlocPattern
- Indicate whether the pattern is localized or notpublic DateLocaleConverter(Object defaultValue, Locale locale)
LocaleConverter
that will return the specified default value
if a conversion error occurs. An unlocalized pattern is used for the convertion.defaultValue
- The default value to be returnedlocale
- The localepublic DateLocaleConverter(Object defaultValue, Locale locale, boolean locPattern)
LocaleConverter
that will return the specified default value
if a conversion error occurs.defaultValue
- The default value to be returnedlocale
- The localelocPattern
- Indicate whether the pattern is localized or notpublic DateLocaleConverter(Object defaultValue, Locale locale, String pattern)
LocaleConverter
that will return the specified default value
if a conversion error occurs. An unlocalized pattern is used for the convertion.defaultValue
- The default value to be returnedlocale
- The localepattern
- The convertion patternpublic DateLocaleConverter(Object defaultValue, Locale locale, String pattern, boolean locPattern)
LocaleConverter
that will return the specified default value
if a conversion error occurs.defaultValue
- The default value to be returnedlocale
- The localepattern
- The convertion patternlocPattern
- Indicate whether the pattern is localized or notpublic boolean isLenient()
DateFormat
used for formatting is lenientDateFormat.isLenient()
public void setLenient(boolean lenient)
lenient
- true if the DateFormat
used for formatting should be lenientDateFormat.setLenient(boolean)
protected Object parse(Object value, String pattern) throws ParseException
parse
in class BaseLocaleConverter
value
- The input object to be convertedpattern
- The pattern is used for the convertionConversionException
- if conversion cannot be performed successfullyParseException
- if an error occurs parsingCopyright © 2000–2016 The Apache Software Foundation. All rights reserved.