Class XMLDate

java.lang.Object
oracle.rules.rl.extensions.XMLDate

public class XMLDate extends Object
  • Constructor Details

    • XMLDate

      public XMLDate()
  • Method Details

    • addYearsTo

      public 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.
      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

      public static XMLGregorianCalendar addDurationTo(XMLGregorianCalendar date, Duration duration)
      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

      public 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.
      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

      public 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.
      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

      public static 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.
      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

      public 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.
      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

      public 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.
      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

      public 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.
      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

      public 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.
      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

      public 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.
      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

      public 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.
      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

      public 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.
      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

      public 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.
      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

      public 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.
      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

      public 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.
      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

      public 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.
      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

      public static XMLGregorianCalendar fromString(String iso8601String) throws IllegalArgumentException
      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

      public static String toString(XMLGregorianCalendar date)
      Return the ISO 8601 representation of the specified XMLGregorianCalendar.
      Parameters:
      date - the date to format.
      Returns:
      the ISO 8601 representation
    • isDateTime

      public static boolean isDateTime(XMLGregorianCalendar date)
      is the date a dateTime?
      Parameters:
      date -
      Returns:
      boolean
    • isDate

      public static boolean isDate(XMLGregorianCalendar date)
      is the date a date? (no time)
      Parameters:
      date -
      Returns:
      boolean
    • isTime

      public static boolean isTime(XMLGregorianCalendar date)
      is the date a time? (no day/month/year)
      Parameters:
      date -
      Returns:
      boolean
    • isDateTimeStamp

      public static boolean isDateTimeStamp(XMLGregorianCalendar date)
      is the date a dateTimeStamp? (timezone is mandatory)
      Parameters:
      date -
      Returns:
      boolean
    • getTimezone

      public static Duration getTimezone(XMLGregorianCalendar dateTime)
      Get the timezone from the dateTime as a duration.
      Parameters:
      dateTime -
      Returns:
      timezone offset as a duration
    • getSeconds

      public static BigDecimal getSeconds(XMLGregorianCalendar dateTime)
      Get the seconds from the date/time as a BigDecimal.
      Parameters:
      dateTime -
      Returns:
      seconds, including fractional part