Class Recipe

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

public class Recipe extends Object implements Storable
This class represents a recipe with a name, category and cooking time.
  • Field Details

    • recipeId

      private int recipeId
    • name

      private final String name
    • cookingTime

      private final int cookingTime
    • category

      private final String category
    • ingredients

      private final List<RecipeIngredient> ingredients
    • instructions

      private final List<RecipeStep> instructions
  • Constructor Details

    • Recipe

      public Recipe(String name, int cookingTime, String category)
      Constructor for the Recipe class.
      Parameters:
      name - the name of the recipe
      cookingTime - the cooking time of the recipe
      category - the category of the recipe
    • Recipe

      public Recipe(int recipeId, String name, int cookingTime, String category)
      Constructor for the Recipe class.
      Parameters:
      recipeId - the id of the recipe
      name - the name of the recipe
      cookingTime - the cooking time of the recipe
      category - the category of the recipe
  • Method Details

    • getAttributes

      public List<String> getAttributes()
      Returns the attributes of the recipe.
      Specified by:
      getAttributes in interface Storable
      Returns:
      the attributes of the recipe
    • getAttributeNames

      public List<String> getAttributeNames()
      Returns the attribute names of the recipe.
      Specified by:
      getAttributeNames in interface Storable
      Returns:
      the attribute names of the recipe
    • getId

      public int getId()
      Returns the id of the recipe.
      Specified by:
      getId in interface Storable
      Returns:
      the id of the recipe
    • getIdName

      public String getIdName()
      Returns the name of the id.
      Specified by:
      getIdName in interface Storable
      Returns:
      the name of the id
    • getRecipeId

      public int getRecipeId()
      Returns the recipe id.
      Returns:
      the recipe id
    • getName

      public String getName()
      Returns the name of the recipe.
      Returns:
      the name of the recipe
    • getCategory

      public String getCategory()
      Returns the category of the recipe.
      Returns:
      the category of the recipe
    • getCookingTime

      public int getCookingTime()
      Returns the cooking time of the recipe.
      Returns:
      the cooking time of the recipe
    • addIngredient

      public void addIngredient(int recipeIngredientId, int itemId, String name, String category, String allergy, int quantity, String unit, int recipeId)
      Adds an ingredient to the recipe.
      Parameters:
      recipeIngredientId - the id of the recipe ingredient
      itemId - the id of the item
      name - the name of the item
      category - the category of the item
      allergy - the allergy information of the item
      quantity - the quantity of the item
      unit - the unit of the item
      recipeId - the id of the recipe
    • getIngredients

      public List<RecipeIngredient> getIngredients()
      Returns the ingredients of the recipe.
      Returns:
      the ingredients of the recipe
    • getIngredientById

      public RecipeIngredient getIngredientById(int id)
      Returns the ingredient with the given id.
      Parameters:
      id - the id of the ingredient
      Returns:
      the ingredient with the given id
    • addInstruction

      public void addInstruction(int stepId, int recipeId, int stepNumber, String instruction)
      Adds an instruction to the recipe.
      Parameters:
      stepId - the id of the step
      recipeId - the id of the recipe
      stepNumber - the number of the step
      instruction - the instruction
    • getInstructions

      public List<RecipeStep> getInstructions()
      Returns the instructions of the recipe.
      Returns:
      the instructions of the recipe as a list
    • getInstructionById

      public RecipeStep getInstructionById(int id)
      Returns the instruction with the given id.
      Parameters:
      id - the id of the instruction
      Returns:
      the instruction with the given id
    • toString

      public String toString()
      Returns the recipe as a string representation.
      Overrides:
      toString in class Object
      Returns:
      the string representation of the recipe