Uses of Class
com.needleandstitch.pavuk.model.Image
Packages that use Image
Package
Description
-
Uses of Image in com.needleandstitch.pavuk.model
Methods in com.needleandstitch.pavuk.model that return ImageModifier and TypeMethodDescriptionClothingItemPart.getImage()
Gets the image associated with this clothing item part.Fabric.getImage()
Gets the image associated with the fabric.Methods in com.needleandstitch.pavuk.model that return types with arguments of type ImageModifier and TypeMethodDescriptionClothingItem.getImages()
Gets the set of images associated with the clothing item.Methods in com.needleandstitch.pavuk.model with parameters of type ImageModifier and TypeMethodDescriptionvoid
Sets the image associated with this clothing item part.void
Sets the image associated with the fabric.Method parameters in com.needleandstitch.pavuk.model with type arguments of type ImageModifier and TypeMethodDescriptionvoid
Sets the set of images associated with the clothing item.Constructors in com.needleandstitch.pavuk.model with parameters of type ImageModifierConstructorDescriptionClothingItemPart
(ClothingItem clothingItem, Image image, Fabric fabric) Constructor for creating a clothing item part with specific clothing item, image, and fabric.Constructor to create a fabric with a specified name, image, and set of colors.Constructor parameters in com.needleandstitch.pavuk.model with type arguments of type ImageModifierConstructorDescriptionClothingItem
(String name, String description, BigDecimal price, Set<Image> images, Category category) Constructor for creating a clothing item with specified details. -
Uses of Image in com.needleandstitch.pavuk.repository
Subinterfaces with type arguments of type Image in com.needleandstitch.pavuk.repositoryModifier and TypeInterfaceDescriptioninterface
Repository interface for managing Image entities.Methods in com.needleandstitch.pavuk.repository that return types with arguments of type ImageModifier and TypeMethodDescriptionImageRepository.findByName
(String name) Finds an image by its name. -
Uses of Image in com.needleandstitch.pavuk.service
Method parameters in com.needleandstitch.pavuk.service with type arguments of type ImageModifier and TypeMethodDescriptionClothingItemService.createClothingItem
(String name, String description, BigDecimal price, Set<Image> images, Category category) Creates a new clothing item.ClothingItemService.updateClothingItem
(Long id, String name, String description, BigDecimal price, Set<Image> images, Category category) Updates an existing clothing item.