org.apache.commons.convert
Class DateTimeConverters.TimestampToString

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

public static class DateTimeConverters.TimestampToString
extends AbstractLocalizedConverter<Timestamp,String>

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


Constructor Summary
DateTimeConverters.TimestampToString()
           
 
Method Summary
 String convert(Timestamp obj)
          Converts obj to T.
 String convert(Timestamp obj, Locale locale, TimeZone timeZone, String formatString)
          Converts obj to a String using the supplied locale, time zone, and format string.
 
Methods inherited from class org.apache.commons.convert.AbstractLocalizedConverter
convert
 
Methods inherited from class org.apache.commons.convert.AbstractConverter
canConvert, 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
canConvert, getSourceClass, getTargetClass
 

Constructor Detail

DateTimeConverters.TimestampToString

public DateTimeConverters.TimestampToString()
Method Detail

convert

public String convert(Timestamp 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(Timestamp obj,
                      Locale locale,
                      TimeZone timeZone,
                      String formatString)
               throws ConversionException
Converts obj to a String using the supplied locale, time zone, and format string. If formatString is null, the string is formatted as DateTimeConverters.JDBC_TIMESTAMP_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-2011 The Apache Software Foundation. All Rights Reserved.