Interface DateRange

All Known Implementing Classes:
DateRangeValue

public interface DateRange
Interface representing a Date range, using Calendar objects.

A value object implementing this interface is available: DateRangeValue.

  • Method Summary

    Modifier and Type Method Description
    java.util.Calendar getEnd()
    Returns the end date
    java.util.Calendar getStart()
    Returns the start date
    void setEnd​(java.util.Calendar value)
    Sets the end date
    void setStart​(java.util.Calendar value)
    Sets the start date
  • Method Details

    • setStart

      void setStart​(java.util.Calendar value)
      Sets the start date
    • setEnd

      void setEnd​(java.util.Calendar value)
      Sets the end date
    • getEnd

      java.util.Calendar getEnd()
      Returns the end date
    • getStart

      java.util.Calendar getStart()
      Returns the start date