Class Date

java.lang.Object
no.ntnu.idatt1002.demo.data.Date
All Implemented Interfaces:
Storable

public class Date extends Object implements Storable
This class represents a date that can be stored in the database.

The date is stored as a LocalDate object, and can be extraced as an 8-digit integer via the getDateInt() method. The 8-digit integer is formatted as follows: YYYYMMDD

  • Field Details

  • Constructor Details

    • Date

      public Date()
    • Date

      public Date(int date)
      Constructs a date object with a given date number.
      Parameters:
      date - the date number
    • Date

      public Date(LocalDate date)
      Constructs a date object with a given date.
      Parameters:
      date - the LocalDate object
  • Method Details

    • getDate

      public LocalDate getDate()
      Returns the date.
      Returns:
      the date
    • getDateInt

      public int getDateInt()
      Gets the date as an 8-digit integer.
      Returns:
      the date as an 8-digit integer
    • setDate

      public void setDate(LocalDate date)
      Sets the date.
      Parameters:
      date - the date
    • getAttributeNames

      public List<String> getAttributeNames()
      Description copied from interface: Storable
      Returns the attribute names of the object. These should be the same as the column names in the database.
      Specified by:
      getAttributeNames in interface Storable
      Returns:
      the attribute names of the object
    • getAttributes

      public List<String> getAttributes()
      Description copied from interface: Storable
      Returns the attributes of the object. These should be the values to be stored in the columns of the database.
      Specified by:
      getAttributes in interface Storable
      Returns:
      the attributes of the object
    • getIdName

      public String getIdName()
      Description copied from interface: Storable
      Returns the name of the id. This should be the same as the column name in the database.
      Specified by:
      getIdName in interface Storable
      Returns:
      the name of the id
    • getId

      public int getId()
      Description copied from interface: Storable
      Returns the id of the object. This should be the value to be stored in the id column of the database.
      Specified by:
      getId in interface Storable
      Returns:
      the id of the object
    • toString

      public String toString()
      Overrides:
      toString in class Object