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 Details

    • getAttributeNames

      List<String> 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

      List<String> 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