Interface Image


public interface Image
Image
Example to create an instance using the builder pattern

     Image image = Image.builder()
             .url("{url}")
             .dimensions(dimensionsBuilder -> dimensionsBuilder)
             .build()
 
  • Method Summary

    Modifier and Type
    Method
    Description
    builder factory method for Image
    builder(Image template)
    create builder for Image instance
    static Image
    deepCopy(Image template)
    factory method to create a deep copy of Image
    @NotNull @Valid ImageDimensions
    Dimensions of the original image.
    Custom label for the image.
    @NotNull String
    URL of the image in its original size that must be unique within a single ProductVariant.
    static Image
    of()
    factory method
    static Image
    of(Image template)
    factory method to create a shallow copy Image
    void
    Dimensions of the original image.
    void
    Custom label for the image.
    void
    URL of the image in its original size that must be unique within a single ProductVariant.
    static com.fasterxml.jackson.core.type.TypeReference<Image>
    gives a TypeReference for usage with Jackson DataBind
    default <T> T
    accessor map function
  • Method Details

    • getUrl

      @NotNull @NotNull String getUrl()

      URL of the image in its original size that must be unique within a single ProductVariant. If the Project is hosted in the China (AWS, Ningxia) Region, verify that the URL is not blocked due to firewall restrictions.

      Returns:
      url
    • getDimensions

      @NotNull @Valid @NotNull @Valid ImageDimensions getDimensions()

      Dimensions of the original image.

      Returns:
      dimensions
    • getLabel

      String getLabel()

      Custom label for the image.

      Returns:
      label
    • setUrl

      void setUrl(String url)

      URL of the image in its original size that must be unique within a single ProductVariant. If the Project is hosted in the China (AWS, Ningxia) Region, verify that the URL is not blocked due to firewall restrictions.

      Parameters:
      url - value to be set
    • setDimensions

      void setDimensions(ImageDimensions dimensions)

      Dimensions of the original image.

      Parameters:
      dimensions - value to be set
    • setLabel

      void setLabel(String label)

      Custom label for the image.

      Parameters:
      label - value to be set
    • of

      static Image of()
      factory method
      Returns:
      instance of Image
    • of

      static Image of(Image template)
      factory method to create a shallow copy Image
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • deepCopy

      @Nullable static Image deepCopy(@Nullable Image template)
      factory method to create a deep copy of Image
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • builder

      static ImageBuilder builder()
      builder factory method for Image
      Returns:
      builder
    • builder

      static ImageBuilder builder(Image template)
      create builder for Image instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withImage

      default <T> T withImage(Function<Image,T> helper)
      accessor map function
      Type Parameters:
      T - mapped type
      Parameters:
      helper - function to map the object
      Returns:
      mapped value
    • typeReference

      static com.fasterxml.jackson.core.type.TypeReference<Image> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference