Package no.ntnu.idatt1002.demo.data
Class Recipe
java.lang.Object
no.ntnu.idatt1002.demo.data.Recipe
- All Implemented Interfaces:
Storable
This class represents a recipe with a name, category and cooking time.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final String
private final int
private final List
<RecipeIngredient> private final List
<RecipeStep> private final String
private int
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addIngredient
(int recipeIngredientId, int itemId, String name, String category, String allergy, int quantity, String unit, int recipeId) Adds an ingredient to the recipe.void
addInstruction
(int stepId, int recipeId, int stepNumber, String instruction) Adds an instruction to the recipe.Returns the attribute names of the recipe.Returns the attributes of the recipe.Returns the category of the recipe.int
Returns the cooking time of the recipe.int
getId()
Returns the id of the recipe.Returns the name of the id.getIngredientById
(int id) Returns the ingredient with the given id.Returns the ingredients of the recipe.getInstructionById
(int id) Returns the instruction with the given id.Returns the instructions of the recipe.getName()
Returns the name of the recipe.int
Returns the recipe id.toString()
Returns the recipe as a string representation.
-
Field Details
-
recipeId
private int recipeId -
name
-
cookingTime
private final int cookingTime -
category
-
ingredients
-
instructions
-
-
Constructor Details
-
Recipe
Constructor for the Recipe class.- Parameters:
name
- the name of the recipecookingTime
- the cooking time of the recipecategory
- the category of the recipe
-
Recipe
Constructor for the Recipe class.- Parameters:
recipeId
- the id of the recipename
- the name of the recipecookingTime
- the cooking time of the recipecategory
- the category of the recipe
-
-
Method Details
-
getAttributes
Returns the attributes of the recipe.- Specified by:
getAttributes
in interfaceStorable
- Returns:
- the attributes of the recipe
-
getAttributeNames
Returns the attribute names of the recipe.- Specified by:
getAttributeNames
in interfaceStorable
- Returns:
- the attribute names of the recipe
-
getId
public int getId()Returns the id of the recipe. -
getIdName
Returns the name of the id. -
getRecipeId
public int getRecipeId()Returns the recipe id.- Returns:
- the recipe id
-
getName
Returns the name of the recipe.- Returns:
- the name of the recipe
-
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 ingredientitemId
- the id of the itemname
- the name of the itemcategory
- the category of the itemallergy
- the allergy information of the itemquantity
- the quantity of the itemunit
- the unit of the itemrecipeId
- the id of the recipe
-
getIngredients
Returns the ingredients of the recipe.- Returns:
- the ingredients of the recipe
-
getIngredientById
Returns the ingredient with the given id.- Parameters:
id
- the id of the ingredient- Returns:
- the ingredient with the given id
-
addInstruction
Adds an instruction to the recipe.- Parameters:
stepId
- the id of the steprecipeId
- the id of the recipestepNumber
- the number of the stepinstruction
- the instruction
-
getInstructions
Returns the instructions of the recipe.- Returns:
- the instructions of the recipe as a list
-
getInstructionById
Returns the instruction with the given id.- Parameters:
id
- the id of the instruction- Returns:
- the instruction with the given id
-
toString
Returns the recipe as a string representation.
-