Class DateTimeConverter
- java.lang.Object
-
- org.apache.commons.beanutils.converters.AbstractConverter
-
- org.apache.commons.beanutils.converters.DateTimeConverter
-
- All Implemented Interfaces:
Converter
- Direct Known Subclasses:
CalendarConverter,DateConverter,SqlDateConverter,SqlTimeConverter,SqlTimestampConverter
public abstract class DateTimeConverter extends AbstractConverter
Converterimplementation that handles conversion to and from date/time objects.This implementation handles conversion for the following date/time types.
java.util.Datejava.util.Calendarjava.sql.Datejava.sql.Timejava.sql.Timestamp
String Conversions (to and from)
This class provides a number of ways in which date/time conversions to/from Strings can be achieved:- Using the SHORT date format for the default Locale, configure using:
setUseLocaleFormat(true)
- Using the SHORT date format for a specified Locale, configure using:
setLocale(Locale)
- Using the specified date pattern(s) for the default Locale, configure using:
- Either
setPattern(String)orsetPatterns(String[])
- Either
- Using the specified date pattern(s) for a specified Locale, configure using:
setPattern(String)orsetPatterns(String[]) and...setLocale(Locale)
- If none of the above are configured the
toDate(String)method is used to convert from String to Date and the Dates'stoString()method used to convert from Date to String.
The Time Zone to use with the date format can be specified using the
setTimeZone()method.- Since:
- 1.8.0
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.StringdisplayPatternsprivate java.util.Localelocaleprivate java.lang.String[]patternsprivate java.util.TimeZonetimeZoneprivate booleanuseLocaleFormat
-
Constructor Summary
Constructors Constructor Description DateTimeConverter()Construct a Date/Time Converter that throws aConversionExceptionif an error occurs.DateTimeConverter(java.lang.Object defaultValue)Construct a Date/Time Converter that returns a default value if an error occurs.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.lang.StringconvertToString(java.lang.Object value)Convert an input Date/Calendar object into a String.protected <T> TconvertToType(java.lang.Class<T> targetType, java.lang.Object value)Convert the input object into a Date object of the specified type.private java.text.DateFormatgetFormat(java.lang.String pattern)Create a date format for the specified pattern.protected java.text.DateFormatgetFormat(java.util.Locale locale, java.util.TimeZone timeZone)Return aDateFormatfor the Locale.java.util.LocalegetLocale()Return the Locale for the Converter (ornullif none specified).java.lang.String[]getPatterns()Return the date format patterns used to convert dates to/from ajava.lang.String(ornullif none specified).java.util.TimeZonegetTimeZone()Return the Time Zone to use when converting dates (ornullif none specified.private voidlogFormat(java.lang.String action, java.text.DateFormat format)Log theDateFormatcreation.private java.util.Calendarparse(java.lang.Class<?> sourceType, java.lang.Class<?> targetType, java.lang.String value)Parse a String date value using the set of patterns.private java.util.Calendarparse(java.lang.Class<?> sourceType, java.lang.Class<?> targetType, java.lang.String value, java.text.DateFormat format)Parse a String into aCalendarobject using the specifiedDateFormat.voidsetLocale(java.util.Locale locale)Set the Locale for the Converter.voidsetPattern(java.lang.String pattern)Set a date format pattern to use to convert dates to/from ajava.lang.String.voidsetPatterns(java.lang.String[] patterns)Set the date format patterns to use to convert dates to/from ajava.lang.String.voidsetTimeZone(java.util.TimeZone timeZone)Set the Time Zone to use when converting dates.voidsetUseLocaleFormat(boolean useLocaleFormat)Indicate whether conversion should use a format/pattern or not.private <T> TtoDate(java.lang.Class<T> type, long value)Convert a long value to the specified Date type for this Converter.private <T> TtoDate(java.lang.Class<T> type, java.lang.String value)Default String to Date conversion.java.lang.StringtoString()Provide a String representation of this date/time converter.-
Methods inherited from class org.apache.commons.beanutils.converters.AbstractConverter
conversionException, convert, convertArray, getDefault, getDefaultType, handleError, handleMissing, isUseDefault, log, setDefaultValue, toString
-
-
-
-
Constructor Detail
-
DateTimeConverter
public DateTimeConverter()
Construct a Date/Time Converter that throws aConversionExceptionif an error occurs.
-
DateTimeConverter
public DateTimeConverter(java.lang.Object defaultValue)
Construct a Date/Time Converter that returns a default value if an error occurs.- Parameters:
defaultValue- The default value to be returned if the value to be converted is missing or an error occurs converting the value.
-
-
Method Detail
-
convertToString
protected java.lang.String convertToString(java.lang.Object value) throws java.lang.ThrowableConvert an input Date/Calendar object into a String.N.B.If the converter has been configured to with one or more patterns (using
setPatterns()), then the first pattern will be used to format the date into a String. Otherwise the defaultDateFormatfor the default locale (and style if configured) will be used.- Overrides:
convertToStringin classAbstractConverter- Parameters:
value- The input value to be converted- Returns:
- the converted String value.
- Throws:
java.lang.Throwable- if an error occurs converting to a String
-
convertToType
protected <T> T convertToType(java.lang.Class<T> targetType, java.lang.Object value) throws java.lang.ExceptionConvert the input object into a Date object of the specified type.This method handles conversions between the following types:
java.util.Datejava.util.Calendarjava.sql.Datejava.sql.Timejava.sql.Timestamp
Stringto any of the above types.For
Stringconversion, if the converter has been configured with one or more patterns (usingsetPatterns()), then the conversion is attempted with each of the specified patterns. Otherwise the defaultDateFormatfor the default locale (and style if configured) will be used.- Specified by:
convertToTypein classAbstractConverter- Type Parameters:
T- The desired target type of the conversion.- Parameters:
targetType- Data type to which this value should be converted.value- The input value to be converted.- Returns:
- The converted value.
- Throws:
java.lang.Exception- if conversion cannot be performed successfully
-
getFormat
protected java.text.DateFormat getFormat(java.util.Locale locale, java.util.TimeZone timeZone)Return aDateFormatfor the Locale.- Parameters:
locale- The Locale to create the Format with (may be null)timeZone- The Time Zone create the Format with (may be null)- Returns:
- A Date Format.
-
getFormat
private java.text.DateFormat getFormat(java.lang.String pattern)
Create a date format for the specified pattern.- Parameters:
pattern- The date pattern- Returns:
- The DateFormat
-
getLocale
public java.util.Locale getLocale()
Return the Locale for the Converter (ornullif none specified).- Returns:
- The locale to use for conversion
-
getPatterns
public java.lang.String[] getPatterns()
Return the date format patterns used to convert dates to/from ajava.lang.String(ornullif none specified).- Returns:
- Array of format patterns.
- See Also:
SimpleDateFormat
-
getTimeZone
public java.util.TimeZone getTimeZone()
Return the Time Zone to use when converting dates (ornullif none specified.- Returns:
- The Time Zone.
-
logFormat
private void logFormat(java.lang.String action, java.text.DateFormat format)Log theDateFormatcreation.- Parameters:
action- The action the format is being used forformat- The Date format
-
parse
private java.util.Calendar parse(java.lang.Class<?> sourceType, java.lang.Class<?> targetType, java.lang.String value) throws java.lang.ExceptionParse a String date value using the set of patterns.- Parameters:
sourceType- The type of the value being convertedtargetType- The type to convert the value to.value- The String date value.- Returns:
- The converted Date object.
- Throws:
java.lang.Exception- if an error occurs parsing the date.
-
parse
private java.util.Calendar parse(java.lang.Class<?> sourceType, java.lang.Class<?> targetType, java.lang.String value, java.text.DateFormat format)Parse a String into aCalendarobject using the specifiedDateFormat.- Parameters:
sourceType- The type of the value being convertedtargetType- The type to convert the value tovalue- The String date value.format- The DateFormat to parse the String value.- Returns:
- The converted Calendar object.
- Throws:
ConversionException- if the String cannot be converted.
-
setLocale
public void setLocale(java.util.Locale locale)
Set the Locale for the Converter.- Parameters:
locale- The Locale.
-
setPattern
public void setPattern(java.lang.String pattern)
Set a date format pattern to use to convert dates to/from ajava.lang.String.- Parameters:
pattern- The format pattern.- See Also:
SimpleDateFormat
-
setPatterns
public void setPatterns(java.lang.String[] patterns)
Set the date format patterns to use to convert dates to/from ajava.lang.String.- Parameters:
patterns- Array of format patterns.- See Also:
SimpleDateFormat
-
setTimeZone
public void setTimeZone(java.util.TimeZone timeZone)
Set the Time Zone to use when converting dates.- Parameters:
timeZone- The Time Zone.
-
setUseLocaleFormat
public void setUseLocaleFormat(boolean useLocaleFormat)
Indicate whether conversion should use a format/pattern or not.- Parameters:
useLocaleFormat-trueif the format for the locale should be used, otherwisefalse
-
toDate
private <T> T toDate(java.lang.Class<T> type, long value)Convert a long value to the specified Date type for this Converter.This method handles conversion to the following types:
java.util.Datejava.util.Calendarjava.sql.Datejava.sql.Timejava.sql.Timestamp
- Type Parameters:
T- The target type- Parameters:
type- The Date type to convert tovalue- The long value to convert.- Returns:
- The converted date value.
-
toDate
private <T> T toDate(java.lang.Class<T> type, java.lang.String value)Default String to Date conversion.This method handles conversion from a String to the following types:
java.sql.Datejava.sql.Timejava.sql.Timestamp
N.B. No default String conversion mechanism is provided for
java.util.Dateandjava.util.Calendartype.- Type Parameters:
T- The target type- Parameters:
type- The date type to convert tovalue- The String value to convert.- Returns:
- The converted Number value.
-
toString
public java.lang.String toString()
Provide a String representation of this date/time converter.- Overrides:
toStringin classAbstractConverter- Returns:
- A String representation of this date/time converter
-
-