Interface TimePeriod

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.Date getEnd()
      Returns the end date/time.
      java.util.Date getStart()
      Returns the start date/time.
      • Methods inherited from interface java.lang.Comparable

        compareTo
    • Method Detail

      • getStart

        java.util.Date getStart()
        Returns the start date/time. This will always be on or before the end date.
        Returns:
        The start date/time (never null).
      • getEnd

        java.util.Date getEnd()
        Returns the end date/time. This will always be on or after the start date.
        Returns:
        The end date/time (never null).