org.apache.commons.convert1.string
Class SqlTimestampConverter

java.lang.Object
  extended by org.apache.commons.convert1.string.SqlTimestampConverter
All Implemented Interfaces:
Converter

public final class SqlTimestampConverter
extends Object
implements Converter

Standard Converter implementation that converts an incoming String into a java.sql.Timestamp object, optionally using a default value or throwing a ConversionException if a conversion error occurs.

Since:
0.1
Version:
$Id: SqlTimestampConverter.java 155441 2005-02-26 13:19:22Z dirkv $
Author:
Craig R. McClanahan

Constructor Summary
SqlTimestampConverter()
          Create a Converter that will throw a ConversionException if a conversion error occurs.
SqlTimestampConverter(Object defaultValue)
          Create a Converter that will return the specified default value if a conversion error occurs.
 
Method Summary
 Object convert(Class type, Object value)
          Convert the specified input object into an output object of the specified type.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SqlTimestampConverter

public SqlTimestampConverter()
Create a Converter that will throw a ConversionException if a conversion error occurs.


SqlTimestampConverter

public SqlTimestampConverter(Object defaultValue)
Create a Converter that will return the specified default value if a conversion error occurs.

Parameters:
defaultValue - The default value to be returned
Method Detail

convert

public Object convert(Class type,
                      Object value)
Convert the specified input object into an output object of the specified type.

Specified by:
convert in interface Converter
Parameters:
type - Data type to which this value should be converted
value - The input value to be converted
Throws:
ConversionException - if conversion cannot be performed successfully


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