Package oracle.rules.rl.extensions
Class JavaDate
java.lang.Object
oracle.rules.rl.extensions.JavaDate
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Calendar
Returns a new Calendar that is the result of adding the specified number of days to the specified date.static Calendar
addDurationTo
(Calendar date, Duration duration) Returns a new Calendar that is the result of adding the specified XML Duration to the specified date.static Calendar
addHoursTo
(Calendar date, long hours) Returns a new Calendar that is the result of adding the specified number of hours to the specified date.static Calendar
addMillisecondsTo
(Calendar date, long milliseconds) Returns a new Calendar that is the result of adding the specified number of milliseconds to the specified date.static Calendar
addMinutesTo
(Calendar date, long minutes) Returns a new Calendar that is the result of adding the specified number of minutes to the specified date.static Calendar
addMonthsTo
(Calendar date, int months) Returns a new Calendar that is the result of adding the specified number of months to the specified date.static Calendar
addSecondsTo
(Calendar date, long seconds) Returns a new Calendar that is the result of adding the specified number of seconds to the specified date.static Calendar
addWeeksTo
(Calendar date, int weeks) Returns a new Calendar that is the result of adding the specified number of weeks to the specified date.static Calendar
addYearsTo
(Calendar date, int years) Returns a new Calendar that is the result of adding the specified number of years to the specified date.static Calendar
fromDateString
(String dateString) Creates a Calendar instance for the specified extended ISO 8601 date.static Calendar
fromDateTimeString
(String datetimeString) Creates a Calendar instance for the specified extended ISO 8601 date and time.static Calendar
fromTimeString
(String timeString) Creates a Calendar instance for the specified extended ISO 8601 time.static Calendar
subtractDaysFrom
(Calendar date, int days) Returns a new Calendar that is the result of subtracting the specified number of days from the specified date.static Calendar
subtractDurationFrom
(Calendar date, Duration duration) Returns a new Calendar that is the result of subtracting the specified duration from the specified date.static Calendar
subtractHoursFrom
(Calendar date, long hours) Returns a new Calendar that is the result of subtracting the specified number of hours from the specified date.static Calendar
subtractMillisecondsFrom
(Calendar date, long milliseconds) Returns a new Calendar that is the result of subtracting the specified number of milliseconds from the specified date.static Calendar
subtractMinutesFrom
(Calendar date, long minutes) Returns a new Calendar that is the result of subtracting the specified number of minutes from the specified date.static Calendar
subtractMonthsFrom
(Calendar date, int months) Returns a new Calendar that is the result of subtracting the specified number of months from the date.static Calendar
subtractSecondsFrom
(Calendar date, long seconds) Returns a new Calendar that is the result of subtracting the specified number of seconds from the specified date.static Calendar
subtractWeeksFrom
(Calendar date, int weeks) Returns a new Calendar that is the result of subtracting the specified number of weeks from the specified date.static Calendar
subtractYearsFrom
(Calendar date, int years) Returns a new Calendar that is the result of subtracting the specified number of years from the specified date.static String
toDateString
(Calendar date) Return the ISO 8601 representation of the specified date.static String
toDateTimeString
(Calendar date) Return the ISO 8601 representation of the specified date and time.static String
toDateTimeTzString
(Calendar date) Return the extended ISO 8601 representation of the specified date and time.static String
toDateTzString
(Calendar date) Return the extended ISO 8601 representation of the specified date.static String
toTimeString
(Calendar time) Return the ISO 8601 representation of the specified time.static String
toTimeTzString
(Calendar time) Return the extended ISO 8601 representation of the specified time.
-
Constructor Details
-
JavaDate
public JavaDate()
-
-
Method Details
-
addYearsTo
Returns a new Calendar that is the result of adding the specified number of years to the specified date.- Parameters:
date
-years
-- Returns:
- a new Calendar that is the result of adding the specified number of years to the specified date.
- Throws:
NullPointerException
- if the date parameter is null.
-
addMonthsTo
Returns a new Calendar that is the result of adding the specified number of months to the specified date.- Parameters:
date
-months
-- Returns:
- a new Calendar that is the result of adding the specified number of months to the specified date.
- Throws:
NullPointerException
- if the date parameter is null.
-
addWeeksTo
Returns a new Calendar that is the result of adding the specified number of weeks to the specified date.- Parameters:
date
-weeks
-- Returns:
- a new Calendar that is the result of adding the specified number of weeks to the specified date.
- Throws:
NullPointerException
- if the date parameter is null.
-
addDaysTo
Returns a new Calendar that is the result of adding the specified number of days to the specified date.- Parameters:
date
-days
-- Returns:
- a new Calendar that is the result of adding the specified number of days to the specified date.
- Throws:
NullPointerException
- if the date parameter is null.
-
addHoursTo
Returns a new Calendar that is the result of adding the specified number of hours to the specified date.- Parameters:
date
-hours
-- Returns:
- a new Calendar that is the result of adding the specified number of hours to the specified date.
- Throws:
NullPointerException
- if the date parameter is null.
-
addMinutesTo
Returns a new Calendar that is the result of adding the specified number of minutes to the specified date.- Parameters:
date
-minutes
-- Returns:
- a new Calendar that is the result of adding the specified number of minutes to the specified date.
- Throws:
NullPointerException
- if the date parameter is null.
-
addSecondsTo
Returns a new Calendar that is the result of adding the specified number of seconds to the specified date.- Parameters:
date
-seconds
-- Returns:
- a new Calendar that is the result of adding the specified number of seconds to the specified date.
- Throws:
NullPointerException
- if the date parameter is null.
-
addMillisecondsTo
Returns a new Calendar that is the result of adding the specified number of milliseconds to the specified date.- Parameters:
date
-milliseconds
-- Returns:
- a new Calendar that is the result of adding the specified number of milliseconds to the specified date.
- Throws:
NullPointerException
- if the date parameter is null.
-
addDurationTo
Returns a new Calendar that is the result of adding the specified XML Duration to the specified date.- Parameters:
date
-duration
-- Returns:
- a new Calendar that is the result of adding the specified duration to the specified date.
- Throws:
NullPointerException
- if either parameter is null.
-
subtractYearsFrom
Returns a new Calendar that is the result of subtracting the specified number of years from the specified date.- Parameters:
date
-years
-- Returns:
- a new Calendar that is the result of subtracting the specified number of years from the specified date.
- Throws:
NullPointerException
- if the date parameter is null.
-
subtractMonthsFrom
Returns a new Calendar that is the result of subtracting the specified number of months from the date.- Parameters:
date
-months
-- Returns:
- a new Calendar that is the result of subtracting the specified number of months from the specified date.
- Throws:
NullPointerException
- if the date parameter is null.
-
subtractWeeksFrom
Returns a new Calendar that is the result of subtracting the specified number of weeks from the specified date.- Parameters:
date
-weeks
-- Returns:
- a new Calendar that is the result of subtracting the specified number of weeks from the specified date.
- Throws:
NullPointerException
- if the date parameter is null.
-
subtractDaysFrom
Returns a new Calendar that is the result of subtracting the specified number of days from the specified date.- Parameters:
date
-days
-- Returns:
- a new Calendar that is the result of subtracting the specified number of days from the specified date.
- Throws:
NullPointerException
- if the date parameter is null.
-
subtractHoursFrom
Returns a new Calendar that is the result of subtracting the specified number of hours from the specified date.- Parameters:
date
-hours
-- Returns:
- a new Calendar that is the result of subtracting the specified number of hours from the specified date.
- Throws:
NullPointerException
- if the date parameter is null.
-
subtractMinutesFrom
Returns a new Calendar that is the result of subtracting the specified number of minutes from the specified date.- Parameters:
date
-minutes
-- Returns:
- a new Calendar that is the result of subtracting the specified number of minutes from the specified date.
- Throws:
NullPointerException
- if the date parameter is null.
-
subtractSecondsFrom
Returns a new Calendar that is the result of subtracting the specified number of seconds from the specified date.- Parameters:
date
-seconds
-- Returns:
- a new Calendar that is the result of subtracting the specified number of seconds from the specified date.
- Throws:
NullPointerException
- if the date parameter is null.
-
subtractMillisecondsFrom
Returns a new Calendar that is the result of subtracting the specified number of milliseconds from the specified date.- Parameters:
date
-milliseconds
-- Returns:
- a new Calendar that is the result of subtracting the specified number of milliseconds from the specified date.
- Throws:
NullPointerException
- if the date parameter is null.
-
subtractDurationFrom
Returns a new Calendar that is the result of subtracting the specified duration from the specified date.- Parameters:
date
-duration
-- Returns:
- a new Calendar that is the result of subtracting the specified duration from the specified date.
- Throws:
NullPointerException
- if the date parameter is null.
-
fromDateString
Creates a Calendar instance for the specified extended ISO 8601 date. Extended to allow YYYY-MM-DD@TimeZoneId- Parameters:
dateString
- the ISO 8601 representation of a date.- Returns:
- a Calendar instance for the specified date.
- Throws:
IllegalArgumentException
- if an error occurs parsing the date string.
-
fromTimeString
Creates a Calendar instance for the specified extended ISO 8601 time. Extended to allow HH:MM:SS@TimeZoneId Warning: a Calendar cannot represent a time without a date. The returned Calendar will be initialized with the current date.- Parameters:
timeString
- the extended ISO 8601 representation of a time.- Returns:
- a Calendar instance for the specified date and time.
- Throws:
IllegalArgumentException
- if an error occurs parsing the date string.
-
fromDateTimeString
Creates a Calendar instance for the specified extended ISO 8601 date and time. Extended to allow YYYY-MM-DDTHH:MM:SS@TimeZoneId- Parameters:
datetimeString
- the ISO 8601 representation of a date and time.- Returns:
- a Calendar instance for the specified date and time.
- Throws:
IllegalArgumentException
- if an error occurs parsing the date string.
-
toDateString
Return the ISO 8601 representation of the specified date.- Parameters:
date
- the date to format.- Returns:
- the ISO 8601 representation
-
toDateTzString
Return the extended ISO 8601 representation of the specified date. Extended to allow YYYY-MM-DD@TimeZoneId- Parameters:
date
- the date to format.- Returns:
- the ISO 8601 representation
-
toDateTimeString
Return the ISO 8601 representation of the specified date and time.- Parameters:
date
- the date/time to format.- Returns:
- the ISO 8601 representation
-
toDateTimeTzString
Return the extended ISO 8601 representation of the specified date and time. Extended to allow YYYY-MM-DDTHH:MM:SS@TimeZoneId- Parameters:
date
- the date/time to format.- Returns:
- the ISO 8601 representation
-
toTimeString
Return the ISO 8601 representation of the specified time.- Parameters:
time
- the time to format.- Returns:
- the ISO 8601 representation
-
toTimeTzString
Return the extended ISO 8601 representation of the specified time. Extended to allow HH:MM:SS@TimeZoneId- Parameters:
time
- the time to format.- Returns:
- the ISO 8601 representation
-