org.apache.commons.convert
Class DateTimeConverters.SqlDateToString

java.lang.Object
  extended by org.apache.commons.convert.AbstractConverter<S,T>
      extended by org.apache.commons.convert.AbstractLocalizedConverter<Date,String>
          extended by org.apache.commons.convert.DateTimeConverters.SqlDateToString
All Implemented Interfaces:
Converter<Date,String>, ConverterLoader, LocalizedConverter<Date,String>
Enclosing class:
DateTimeConverters

public static class DateTimeConverters.SqlDateToString
extends AbstractLocalizedConverter<Date,String>

An object that converts a java.sql.Date to a String.


Constructor Summary
DateTimeConverters.SqlDateToString()
           
 
Method Summary
 boolean canConvert(Class<?> sourceClass, Class<?> targetClass)
          Returns true if this object can convert sourceClass to targetClass.
 String convert(Date obj)
          Converts obj to T.
 String convert(Date obj, Locale locale, TimeZone timeZone, String formatString)
          Converts obj to a String using the supplied time zone.
 
Methods inherited from class org.apache.commons.convert.AbstractLocalizedConverter
convert
 
Methods inherited from class org.apache.commons.convert.AbstractConverter
getSourceClass, getTargetClass, loadConverters
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.apache.commons.convert.Converter
getSourceClass, getTargetClass
 

Constructor Detail

DateTimeConverters.SqlDateToString

public DateTimeConverters.SqlDateToString()
Method Detail

canConvert

public boolean canConvert(Class<?> sourceClass,
                          Class<?> targetClass)
Description copied from interface: Converter
Returns true if this object can convert sourceClass to targetClass.

Implementations can accomodate class hierarchy ranges by converting super classes or interfaces.

Specified by:
canConvert in interface Converter<Date,String>
Overrides:
canConvert in class AbstractConverter<Date,String>
Parameters:
sourceClass - The source Class
targetClass - The target Class
Returns:
true if this object can convert sourceClass to targetClass.

convert

public String convert(Date obj)
               throws ConversionException
Description copied from interface: Converter
Converts obj to T.

Parameters:
obj - The source Object to convert
Returns:
The converted Object
Throws:
ConversionException

convert

public String convert(Date obj,
                      Locale locale,
                      TimeZone timeZone,
                      String formatString)
               throws ConversionException
Converts obj to a String using the supplied time zone. The formatString parameter is ignored. The returned string is formatted as DateTimeConverters.JDBC_DATE_FORMAT.

Parameters:
obj - The source Object to convert
locale - The locale used for conversion - must not be null
timeZone - The time zone used for conversion - must not be null
formatString - Optional formatting string
Returns:
The converted Object
Throws:
ConversionException


Copyright © 2003-2013 The Apache Software Foundation. All Rights Reserved.