public class ISO8601Utils extends Object
| Constructor and Description | 
|---|
| ISO8601Utils() | 
| Modifier and Type | Method and Description | 
|---|---|
| static String | format(Date date)Format a date into 'yyyy-MM-ddThh:mm:ssZ' (GMT timezone, no milliseconds precision) | 
| static String | format(Date date,
      boolean millis)Format a date into 'yyyy-MM-ddThh:mm:ss[.sss]Z' (GMT timezone) | 
| static String | format(Date date,
      boolean millis,
      TimeZone tz)Format date into yyyy-MM-ddThh:mm:ss[.sss][Z|[+-]hh:mm] | 
| static Date | parse(String date)Parse a date from ISO-8601 formatted string. | 
| static TimeZone | timeZoneGMT()Accessor for static GMT timezone instance. | 
public static TimeZone timeZoneGMT()
public static String format(Date date)
date - the date to formatpublic static String format(Date date, boolean millis)
date - the date to formatmillis - true to include millis precision otherwise falsepublic static String format(Date date, boolean millis, TimeZone tz)
date - the date to formatmillis - true to include millis precision otherwise falsetz - timezone to use for the formatting (GMT will produce 'Z')public static Date parse(String date)
date - ISO string to parse in the appropriate format.IllegalArgumentException - if the date is not in the appropriate formatCopyright © 2012-2013 FasterXML. All Rights Reserved.