Class JavaDate

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

public class JavaDate extends Object
  • Constructor Details

    • JavaDate

      public JavaDate()
  • Method Details

    • addYearsTo

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

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

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

      public static Calendar addDaysTo(Calendar date, int days)
      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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

      public static Calendar fromDateString(String dateString) throws IllegalArgumentException
      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

      public static Calendar fromTimeString(String timeString) throws IllegalArgumentException
      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

      public static Calendar fromDateTimeString(String datetimeString) throws IllegalArgumentException
      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

      public static String toDateString(Calendar date)
      Return the ISO 8601 representation of the specified date.
      Parameters:
      date - the date to format.
      Returns:
      the ISO 8601 representation
    • toDateTzString

      public static String toDateTzString(Calendar date)
      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

      public static String toDateTimeString(Calendar date)
      Return the ISO 8601 representation of the specified date and time.
      Parameters:
      date - the date/time to format.
      Returns:
      the ISO 8601 representation
    • toDateTimeTzString

      public static String toDateTimeTzString(Calendar date)
      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

      public static String toTimeString(Calendar time)
      Return the ISO 8601 representation of the specified time.
      Parameters:
      time - the time to format.
      Returns:
      the ISO 8601 representation
    • toTimeTzString

      public static String toTimeTzString(Calendar time)
      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