|
sYYYY-MM-DDThh:mm:ss.sssTZDwhere:
Constructor Summary | ||
ISO8601DateFormat() |
Method Summary | ||
static String |
format(Date isoDate) Format date into ISO format (UCT0 / Zulu) |
|
static String |
formatToZulu(String isoDate) Normalise isoDate time to Zulu(UTC0) time-zone, removing any UTC offset. |
|
static Calendar |
getCalendar() Get a calendar object from cache. |
|
static boolean |
isTimeComponentDefined(String isoDate) Checks whether or not the given ISO8601-formatted date-string contains a time-component instead of only the actual date. |
|
static Date |
parse(String isoDate) Parse date from ISO formatted string. |
|
static Date |
parse(String isoDate, TimeZone timezone) Parse date from ISO formatted string, with an explicit timezone specified |
|
static Date |
parseDayOnly(String isoDate, TimeZone timezone) Parses the given ISO8601-formatted date-string, not taking into account the time-component. |
|
static Date |
parseInternal(String isoDate, TimeZone timezone) Parse date from ISO formatted string, either in the specified TimeZone, or with TimeZone information taken from the date |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
|