Class RecurrenceFields.TIME_OF_DAY

java.lang.Object
oracle.as.scheduler.RecurrenceFields.TIME_OF_DAY
All Implemented Interfaces:
Serializable
Enclosing class:
RecurrenceFields

public static class RecurrenceFields.TIME_OF_DAY extends Object implements Serializable
Class that defines the time of the day.

The time of the day is defined in the format HH:MM:SS where

  • HH represents the hour part of the time. Valid values are between 0 and 23.
  • MM represents the minute within the hour. Valid values are between 0 and 59.
  • SS represents the seconds within the minutes. Valid values are between 0 and 59.
This class only supports the 24-hour clock.

An TIME_OF_DAY instance can be obtained via the valueOf(int, int, int) method.

See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Maximum possible value for Hour part (HH).
    static final int
    Maximum possible value for Minute part (MM).
    static final int
    Maximum possible value for Second part (SS).
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Get the Hour part of this TIME_OF_DAY instance.
    int
    Get the Minute part of this TIME_OF_DAY instance.
    int
    Get the Second part of this TIME_OF_DAY instance.
    void
    setHour(int hour)
    Set the Hour part of this TIME_OF_DAY instance.
    void
    setMinute(int minute)
    Set the Minute part of this TIME_OF_DAY instance.
    void
    setSecond(int second)
    Set the second part of this TIME_OF_DAY instance.
    The string representation of this TIME_OF_DAY instance.
    valueOf(int hour, int minute, int second)
    A TIME_OF_DAY instance representing the time specified by given values for hour, minute, and second.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • MAX_HOUR_VALUE

      public static final int MAX_HOUR_VALUE
      Maximum possible value for Hour part (HH).
      See Also:
    • MAX_MINUTE_VALUE

      public static final int MAX_MINUTE_VALUE
      Maximum possible value for Minute part (MM).
      See Also:
    • MAX_SECOND_VALUE

      public static final int MAX_SECOND_VALUE
      Maximum possible value for Second part (SS).
      See Also:
  • Method Details

    • valueOf

      public static RecurrenceFields.TIME_OF_DAY valueOf(int hour, int minute, int second) throws IllegalArgumentException
      A TIME_OF_DAY instance representing the time specified by given values for hour, minute, and second. All the values must be within the allowed range.
      Parameters:
      hour - the hour part of the time.
      minute - the minutes within the hour.
      second - the seconds within the minute.
      Returns:
      an instance of TIME_OF_DAY representing the given time.
      Throws:
      IllegalArgumentException - if hour, minute and second do not represent valid values.
    • getHour

      public int getHour()
      Get the Hour part of this TIME_OF_DAY instance.
      Returns:
      the hour part as int.
    • setHour

      public void setHour(int hour) throws IllegalArgumentException
      Set the Hour part of this TIME_OF_DAY instance.
      Parameters:
      hour - the hour to be set. The value must be between 0 and 23.
      Throws:
      IllegalArgumentException - if the specified value is not a valid value.
    • getMinute

      public int getMinute()
      Get the Minute part of this TIME_OF_DAY instance.
      Returns:
      the minute part as int.
    • setMinute

      public void setMinute(int minute) throws IllegalArgumentException
      Set the Minute part of this TIME_OF_DAY instance.
      Parameters:
      minute - the minute to be set. The value must be between 0 and 59.
      Throws:
      IllegalArgumentException - if the specified value is not a valid value.
    • getSecond

      public int getSecond()
      Get the Second part of this TIME_OF_DAY instance.
      Returns:
      the second part as int.
    • setSecond

      public void setSecond(int second) throws IllegalArgumentException
      Set the second part of this TIME_OF_DAY instance.
      Parameters:
      second - the second to be set. The value must be between 0 and 59.
      Throws:
      IllegalArgumentException - if the specified value is not a valid value.
    • toString

      public String toString()
      The string representation of this TIME_OF_DAY instance. The returned string will HH:MM:SS format with colon as the field separator.
      Overrides:
      toString in class Object
      Returns:
      String representing this TIME_OF_DAY in the HH:MM:SS format.