|
Converter implementation that converts an incoming String into a
java.util.Date object according to the ISO 8601 standard,
optionally using a default value or throwing a
ConversionException if
a conversion error occurs.
Supported date formats:
- 1997-07-16T19:20:30.45-02:00
- 1997-07-16T19:20:30+01:00
- 1997-07-16T19:20:30
- 1997-07-16T19:20
- 1997-07-16
- 1997-07
- 1997
This class makes use of org.w3c.util.DateParser to parse
strings.
author: Flavio Tordini version: $Id: ISO8601DateConverter.java,v 1.1.1.1 2004/06/16 13:15:12 version: flaviotordini Exp $ See Also: http://www.w3.org/TR/NOTE-datetime
* See Also: http://dev.w3.org/cvsweb/java/classes/org/w3c/util/
* |