Package no.ntnu.idatt1002.demo.data
Interface Storable
- All Known Implementing Classes:
Date
,Event
,InventoryItem
,Item
,Recipe
,RecipeIngredient
,RecipeStep
,ShoppingListItem
public interface Storable
This interface is used to store objects in the database.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the attribute names of the object.Returns the attributes of the object.int
getId()
Returns the id of the object.Returns the name of the id.
-
Method Details
-
getAttributeNames
Returns the attribute names of the object. These should be the same as the column names in the database.- Returns:
- the attribute names of the object
-
getAttributes
Returns the attributes of the object. These should be the values to be stored in the columns of the database.- Returns:
- the attributes of the object
-
getIdName
String getIdName()Returns the name of the id. This should be the same as the column name in the database.- Returns:
- the name of the id
-
getId
int getId()Returns the id of the object. This should be the value to be stored in the id column of the database.- Returns:
- the id of the object
-