Package oracle.rules.rl.extensions
Class SQLDate
java.lang.Object
oracle.rules.rl.extensions.SQLDate
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Date
dateFromDateString
(String dateString) Creates a Date instance for the specified ISO 8601 date.static Date
dateFromDateTimeString
(String datetimeString) Creates a Date instance for the specified ISO 8601 date and time.static Date
dateFromTimeString
(String timeString) Creates a Date instance for the specified ISO 8601 time.static Timestamp
timestampFromDateTimeString
(String datetimeString) Creates a Timestamp instance for the specified extended ISO 8601 date and time.static String
toDateString
(Date date) Return the ISO 8601 representation of the specified Date.static String
toDateTimeString
(Date date) Return the ISO 8601 representation of the specified Date.static String
Return the ISO 8601 representation of the specified date and time.static String
toTimeString
(Date date) Return the ISO 8601 representation of the specified Date.
-
Constructor Details
-
SQLDate
public SQLDate()
-
-
Method Details
-
dateFromDateString
Creates a Date instance for the specified ISO 8601 date.- Parameters:
dateString
- the ISO 8601 representation of a date.- Returns:
- a Date instance for the specified date.
- Throws:
IllegalArgumentException
- if an error occurs parsing the date string.
-
dateFromTimeString
Creates a Date instance for the specified ISO 8601 time.- Parameters:
timeString
- the ISO 8601 representation of a point in time.- Returns:
- a Date instance for the specified date and time.
- Throws:
IllegalArgumentException
- if an error occurs parsing the date string.
-
dateFromDateTimeString
Creates a Date instance for the specified ISO 8601 date and time.- Parameters:
datetimeString
- the ISO 8601 representation of a date and time.- Returns:
- a Date instance for the specified date and time.
- Throws:
IllegalArgumentException
- if an error occurs parsing the date string.
-
toTimeString
Return the ISO 8601 representation of the specified Date.- Parameters:
date
- the date/time to format.- Returns:
- the ISO 8601 representation
-
toDateString
Return the ISO 8601 representation of the specified Date.- Parameters:
date
- the date/time to format.- Returns:
- the ISO 8601 representation
-
toDateTimeString
Return the ISO 8601 representation of the specified Date.- Parameters:
date
- the date/time to format.- Returns:
- the ISO 8601 representation
-
timestampFromDateTimeString
public static Timestamp timestampFromDateTimeString(String datetimeString) throws IllegalArgumentException Creates a Timestamp instance for the specified extended ISO 8601 date and time. Extended to allow YYYY-MM-DDTHH:MM:SS@TimeZoneId- Parameters:
datetimeString
- the extended ISO 8601 representation of a date and time.- Returns:
- a Timestamp instance for the specified date and time.
- Throws:
IllegalArgumentException
- if an error occurs parsing the date string.
-
toDateTimeString
Return the ISO 8601 representation of the specified date and time.- Parameters:
ts
- the timestamp to format.- Returns:
- the ISO 8601 representation
-