Package oracle.stellent.ridc.common.util
Class ISO8601
java.lang.Object
oracle.stellent.ridc.common.util.ISO8601
For parsing dates in ISO-8601 Format. Modified from WebCenter code at
http://webcenter.us.oracle.com/WorkplaceLabelServer/LATEST/wpfas/modules/doclib-service/jcr-common-runtime/src/java/oracle/vcr/share/ISO8601.java
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Calendar
parseISO8601
(String str) Parse str into a date, assuming ISO8601 representationstatic Calendar
parseISO8601
(String str, TimeZone tz) Parse str into a date, assuming ISO8601 representation
-
Constructor Details
-
ISO8601
public ISO8601()
-
-
Method Details
-
parseISO8601
Parse str into a date, assuming ISO8601 representation- Parameters:
str
- the date in ISO8601 string format- Returns:
- The Calendar value of the parsed date
- Throws:
ParseException
- if the string format is not valid
-
parseISO8601
Parse str into a date, assuming ISO8601 representation- Parameters:
str
- the date in ISO8601 string formattz
- the timezone to use if not specified in string- Returns:
- The Calendar value of the parsed date
- Throws:
ParseException
- if the string format is not valid
-