Class SQLDate

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

public class SQLDate extends Object
  • Constructor Details

    • SQLDate

      public SQLDate()
  • Method Details

    • dateFromDateString

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

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

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

      public static String toTimeString(Date date)
      Return the ISO 8601 representation of the specified Date.
      Parameters:
      date - the date/time to format.
      Returns:
      the ISO 8601 representation
    • toDateString

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

      public static String toDateTimeString(Date date)
      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

      public static String toDateTimeString(Timestamp ts)
      Return the ISO 8601 representation of the specified date and time.
      Parameters:
      ts - the timestamp to format.
      Returns:
      the ISO 8601 representation