Package oracle.rules.rl.extensions
Class XMLDate
java.lang.Object
oracle.rules.rl.extensions.XMLDate
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic XMLGregorianCalendar
addDaysTo
(XMLGregorianCalendar date, int days) Returns a new XMLGregorianCalendar that is the result of adding the specified number of days to the specified XMLGregorianCalendar.static XMLGregorianCalendar
addDurationTo
(XMLGregorianCalendar date, Duration duration) Returns a new XMLGregorianCalendar that is the result of adding the specified duration to the specified XMLGregorianCalendar.static XMLGregorianCalendar
addHoursTo
(XMLGregorianCalendar date, long hours) Returns a new XMLGregorianCalendar that is the result of adding the specified number of hours to the specified XMLGregorianCalendar.static XMLGregorianCalendar
addMillisecondsTo
(XMLGregorianCalendar date, long milliseconds) Returns a new XMLGregorianCalendar that is the result of adding the specified number of milliseconds to the specified XMLGregorianCalendar.static XMLGregorianCalendar
addMinutesTo
(XMLGregorianCalendar date, long minutes) Returns a new XMLGregorianCalendar that is the result of adding the specified number of minutes to the specified XMLGregorianCalendar.static XMLGregorianCalendar
addMonthsTo
(XMLGregorianCalendar date, int months) Returns a new XMLGregorianCalendar that is the result of adding the specified number of months to the specified XMLGregorianCalendar.static XMLGregorianCalendar
addSecondsTo
(XMLGregorianCalendar date, long seconds) Returns a new XMLGregorianCalendar that is the result of adding the specified number of seconds to the specified XMLGregorianCalendar.static XMLGregorianCalendar
addWeeksTo
(XMLGregorianCalendar date, int weeks) Returns a new XMLGregorianCalendar that is the result of adding the specified number of weeks to the specified XMLGregorianCalendar.static XMLGregorianCalendar
addYearsTo
(XMLGregorianCalendar date, int years) Returns a new XMLGregorianCalendar that is the result of adding the specified number of years to the specified XMLGregorianCalendar.static XMLGregorianCalendar
fromString
(String iso8601String) Creates an XMLGregorianCalendar instance from specified ISO 8601 date, datetime or time.static BigDecimal
getSeconds
(XMLGregorianCalendar dateTime) Get the seconds from the date/time as a BigDecimal.static Duration
getTimezone
(XMLGregorianCalendar dateTime) Get the timezone from the dateTime as a duration.static boolean
isDate
(XMLGregorianCalendar date) is the date a date?static boolean
is the date a dateTime?static boolean
is the date a dateTimeStamp?static boolean
isTime
(XMLGregorianCalendar date) is the date a time?static XMLGregorianCalendar
subtractDaysFrom
(XMLGregorianCalendar date, int days) Returns a new XMLGregorianCalendar that is the result of subtracting the specified number of days from the specified XMLGregorianCalendar.static XMLGregorianCalendar
subtractDurationFrom
(XMLGregorianCalendar date, Duration duration) Returns a new XMLGregorianCalendar that is the result of subtracting the specified duration from the specified XMLGregorianCalendar.static XMLGregorianCalendar
subtractHoursFrom
(XMLGregorianCalendar date, long hours) Returns a new XMLGregorianCalendar that is the result of subtracting the specified number of hours from the specified XMLGregorianCalendar.static XMLGregorianCalendar
subtractMillisecondsFrom
(XMLGregorianCalendar date, long milliseconds) Returns a new XMLGregorianCalendar that is the result of subtracting the specified number of milliseconds from the specified XMLGregorianCalendar.static XMLGregorianCalendar
subtractMinutesFrom
(XMLGregorianCalendar date, long minutes) Returns a new XMLGregorianCalendar that is the result of subtracting the specified number of minutes from the specified XMLGregorianCalendar.static XMLGregorianCalendar
subtractMonthsFrom
(XMLGregorianCalendar date, int months) Returns a new XMLGregorianCalendar that is the result of subtracting the specified number of months from the specified XMLGregorianCalendar.static XMLGregorianCalendar
subtractSecondsFrom
(XMLGregorianCalendar date, long seconds) Returns a new XMLGregorianCalendar that is the result of subtracting the specified number of seconds from the specified XMLGregorianCalendar.static XMLGregorianCalendar
subtractWeeksFrom
(XMLGregorianCalendar date, int weeks) Returns a new XMLGregorianCalendar that is the result of subtracting the specified number of weeks from the specified XMLGregorianCalendar.static XMLGregorianCalendar
subtractYearsFrom
(XMLGregorianCalendar date, int years) Returns a new XMLGregorianCalendar that is the result of subtracting the specified number of years from the specified XMLGregorianCalendar.static String
toString
(XMLGregorianCalendar date) Return the ISO 8601 representation of the specified XMLGregorianCalendar.
-
Constructor Details
-
XMLDate
public XMLDate()
-
-
Method Details
-
addYearsTo
Returns a new XMLGregorianCalendar that is the result of adding the specified number of years to the specified XMLGregorianCalendar.- Parameters:
date
-years
-- Returns:
- a new XMLGregorianCalendar that is the result of adding the specified number of years to the specified XMLGregorianCalendar.
- Throws:
NullPointerException
- if the date parameter is null.
-
addDurationTo
Returns a new XMLGregorianCalendar that is the result of adding the specified duration to the specified XMLGregorianCalendar.- Parameters:
date
-duration
-- Returns:
- a new XMLGregorianCalendar that is the result of adding the specified duration to the specified XMLGregorianCalendar.
- Throws:
NullPointerException
- if either parameter is null.
-
addMonthsTo
Returns a new XMLGregorianCalendar that is the result of adding the specified number of months to the specified XMLGregorianCalendar.- Parameters:
date
-months
-- Returns:
- a new XMLGregorianCalendar that is the result of adding the specified number of months to the specified XMLGregorianCalendar.
- Throws:
NullPointerException
- if the date parameter is null.
-
addWeeksTo
Returns a new XMLGregorianCalendar that is the result of adding the specified number of weeks to the specified XMLGregorianCalendar.- Parameters:
date
-weeks
-- Returns:
- a new XMLGregorianCalendar that is the result of adding the specified number of weeks to the specified XMLGregorianCalendar.
- Throws:
NullPointerException
- if the date parameter is null.
-
addDaysTo
Returns a new XMLGregorianCalendar that is the result of adding the specified number of days to the specified XMLGregorianCalendar.- Parameters:
date
-days
-- Returns:
- a new XMLGregorianCalendar that is the result of adding the specified number of days to the specified XMLGregorianCalendar.
- Throws:
NullPointerException
- if the date parameter is null.
-
addHoursTo
Returns a new XMLGregorianCalendar that is the result of adding the specified number of hours to the specified XMLGregorianCalendar.- Parameters:
date
-hours
-- Returns:
- a new XMLGregorianCalendar that is the result of adding the specified number of hours to the specified XMLGregorianCalendar.
- Throws:
NullPointerException
- if the date parameter is null.
-
addMinutesTo
Returns a new XMLGregorianCalendar that is the result of adding the specified number of minutes to the specified XMLGregorianCalendar.- Parameters:
date
-minutes
-- Returns:
- a new XMLGregorianCalendar that is the result of adding the specified number of minutes to the specified XMLGregorianCalendar.
- Throws:
NullPointerException
- if the date parameter is null.
-
addSecondsTo
Returns a new XMLGregorianCalendar that is the result of adding the specified number of seconds to the specified XMLGregorianCalendar.- Parameters:
date
-seconds
-- Returns:
- a new XMLGregorianCalendar that is the result of adding the specified number of seconds to the specified XMLGregorianCalendar.
- Throws:
NullPointerException
- if the date parameter is null.
-
addMillisecondsTo
Returns a new XMLGregorianCalendar that is the result of adding the specified number of milliseconds to the specified XMLGregorianCalendar.- Parameters:
date
-milliseconds
-- Returns:
- a new XMLGregorianCalendar that is the result of adding the specified number of milliseconds to the specified XMLGregorianCalendar.
- Throws:
NullPointerException
- if the date parameter is null.
-
subtractYearsFrom
Returns a new XMLGregorianCalendar that is the result of subtracting the specified number of years from the specified XMLGregorianCalendar.- Parameters:
date
-years
-- Returns:
- a new XMLGregorianCalendar that is the result of subtracting the specified number of years from the specified XMLGregorianCalendar.
- Throws:
NullPointerException
- if the date parameter is null.
-
subtractDurationFrom
public static XMLGregorianCalendar subtractDurationFrom(XMLGregorianCalendar date, Duration duration) Returns a new XMLGregorianCalendar that is the result of subtracting the specified duration from the specified XMLGregorianCalendar.- Parameters:
date
-duration
-- Returns:
- a new XMLGregorianCalendar that is the result of subtracting the specified duration from the specified XMLGregorianCalendar.
- Throws:
NullPointerException
- if either parameter is null.
-
subtractMonthsFrom
Returns a new XMLGregorianCalendar that is the result of subtracting the specified number of months from the specified XMLGregorianCalendar.- Parameters:
date
-months
-- Returns:
- a new XMLGregorianCalendar that is the result of subtracting the specified number of months from the specified XMLGregorianCalendar.
- Throws:
NullPointerException
- if the date parameter is null.
-
subtractWeeksFrom
Returns a new XMLGregorianCalendar that is the result of subtracting the specified number of weeks from the specified XMLGregorianCalendar.- Parameters:
date
-weeks
-- Returns:
- a new XMLGregorianCalendar that is the result of subtracting the specified number of weeks from the specified XMLGregorianCalendar.
- Throws:
NullPointerException
- if the date parameter is null.
-
subtractDaysFrom
Returns a new XMLGregorianCalendar that is the result of subtracting the specified number of days from the specified XMLGregorianCalendar.- Parameters:
date
-days
-- Returns:
- a new XMLGregorianCalendar that is the result of subtracting the specified number of days from the specified XMLGregorianCalendar.
- Throws:
NullPointerException
- if the date parameter is null.
-
subtractHoursFrom
Returns a new XMLGregorianCalendar that is the result of subtracting the specified number of hours from the specified XMLGregorianCalendar.- Parameters:
date
-hours
-- Returns:
- a new XMLGregorianCalendar that is the result of subtracting the specified number of hours from the specified XMLGregorianCalendar.
- Throws:
NullPointerException
- if the date parameter is null.
-
subtractMinutesFrom
Returns a new XMLGregorianCalendar that is the result of subtracting the specified number of minutes from the specified XMLGregorianCalendar.- Parameters:
date
-minutes
-- Returns:
- a new XMLGregorianCalendar that is the result of subtracting the specified number of minutes from the specified XMLGregorianCalendar.
- Throws:
NullPointerException
- if the date parameter is null.
-
subtractSecondsFrom
Returns a new XMLGregorianCalendar that is the result of subtracting the specified number of seconds from the specified XMLGregorianCalendar.- Parameters:
date
-seconds
-- Returns:
- a new XMLGregorianCalendar that is the result of subtracting the specified number of seconds from the specified XMLGregorianCalendar.
- Throws:
NullPointerException
- if the date parameter is null.
-
subtractMillisecondsFrom
public static XMLGregorianCalendar subtractMillisecondsFrom(XMLGregorianCalendar date, long milliseconds) Returns a new XMLGregorianCalendar that is the result of subtracting the specified number of milliseconds from the specified XMLGregorianCalendar.- Parameters:
date
-milliseconds
-- Returns:
- a new XMLGregorianCalendar that is the result of subtracting the specified number of milliseconds from the specified XMLGregorianCalendar.
- Throws:
NullPointerException
- if the date parameter is null.
-
fromString
Creates an XMLGregorianCalendar instance from specified ISO 8601 date, datetime or time.- Parameters:
iso8601String
- the ISO 8601 representation- Returns:
- a XMLGregorianCalendar instance
- Throws:
IllegalArgumentException
- if an error occurs parsing the date string.
-
toString
Return the ISO 8601 representation of the specified XMLGregorianCalendar.- Parameters:
date
- the date to format.- Returns:
- the ISO 8601 representation
-
isDateTime
is the date a dateTime?- Parameters:
date
-- Returns:
- boolean
-
isDate
is the date a date? (no time)- Parameters:
date
-- Returns:
- boolean
-
isTime
is the date a time? (no day/month/year)- Parameters:
date
-- Returns:
- boolean
-
isDateTimeStamp
is the date a dateTimeStamp? (timezone is mandatory)- Parameters:
date
-- Returns:
- boolean
-
getTimezone
Get the timezone from the dateTime as a duration.- Parameters:
dateTime
-- Returns:
- timezone offset as a duration
-
getSeconds
Get the seconds from the date/time as a BigDecimal.- Parameters:
dateTime
-- Returns:
- seconds, including fractional part
-