org.apache.commons.convert
Class DateTimeConverters.TimestampToDate
java.lang.Object
org.apache.commons.convert.AbstractConverter<Timestamp,Date>
org.apache.commons.convert.DateTimeConverters.TimestampToDate
- All Implemented Interfaces:
- Converter<Timestamp,Date>, ConverterLoader
- Enclosing class:
- DateTimeConverters
public static class DateTimeConverters.TimestampToDate
- extends AbstractConverter<Timestamp,Date>
An object that converts a java.sql.Timestamp
to a
java.util.Date
.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DateTimeConverters.TimestampToDate
public DateTimeConverters.TimestampToDate()
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<Timestamp,Date>
- Overrides:
canConvert
in class AbstractConverter<Timestamp,Date>
- Parameters:
sourceClass
- The source Class
targetClass
- The target Class
- Returns:
true
if this object can convert
sourceClass
to targetClass
.
convert
public Date 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
Copyright © 2003-2013 The Apache Software Foundation. All Rights Reserved.