Interface Image
An Image uploaded to commercetools Composable Commerce is stored in a Content Delivery Network and it's available in several pre-defined sizes. If you already have an image stored on an external service, you can save the URL when creating a new product or adding a variant, or you can add it later.
Example to create an instance using the builder pattern
Image image = Image.builder()
.url("{url}")
.dimensions(dimensionsBuilder -> dimensionsBuilder)
.build()
-
Method Summary
Modifier and TypeMethodDescriptionstatic ImageBuilderbuilder()builder factory method for Imagestatic ImageBuildercreate builder for Image instancecopyDeep()static Imagefactory method to create a deep copy of Image@NotNull @Valid AssetDimensionsDimensions of the original image.getLabel()Custom label that can be used, for example, as an image description.@NotNull StringgetUrl()URL of the image in its original size.static Imageof()factory methodstatic Imagefactory method to create a shallow copy ImagevoidsetDimensions(AssetDimensions dimensions) Dimensions of the original image.voidCustom label that can be used, for example, as an image description.voidURL of the image in its original size.static com.fasterxml.jackson.core.type.TypeReference<Image>gives a TypeReference for usage with Jackson DataBinddefault <T> Taccessor map function
-
Method Details
-
getUrl
URL of the image in its original size. The URL must be unique within a single variant. It can be used to obtain the image in different sizes.
- Returns:
- url
-
getDimensions
Dimensions of the original image. This can be used by your application, for example, to determine whether the image is large enough to display a zoom view.
- Returns:
- dimensions
-
getLabel
String getLabel()Custom label that can be used, for example, as an image description.
- Returns:
- label
-
setUrl
URL of the image in its original size. The URL must be unique within a single variant. It can be used to obtain the image in different sizes.
- Parameters:
url- value to be set
-
setDimensions
Dimensions of the original image. This can be used by your application, for example, to determine whether the image is large enough to display a zoom view.
- Parameters:
dimensions- value to be set
-
setLabel
Custom label that can be used, for example, as an image description.
- Parameters:
label- value to be set
-
of
factory method- Returns:
- instance of Image
-
of
factory method to create a shallow copy Image- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
Image copyDeep() -
deepCopy
factory method to create a deep copy of Image- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for Image- Returns:
- builder
-
builder
create builder for Image instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withImage
accessor map function- Type Parameters:
T- mapped type- Parameters:
helper- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-