Package no.ntnu.idatt1002.demo.data
Class Date
java.lang.Object
no.ntnu.idatt1002.demo.data.Date
- All Implemented Interfaces:
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 Summary
Fields -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
date
-
-
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
Constructs a date object with a given date.- Parameters:
date
- theLocalDate
object
-
-
Method Details
-
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
Sets the date.- Parameters:
date
- the date
-
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 interfaceStorable
- Returns:
- the attribute names of the object
-
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 interfaceStorable
- Returns:
- the attributes of the object
-
getIdName
Description copied from interface:Storable
Returns the name of the id. This should be the same as the column name in the database. -
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. -
toString
-