Interface ImageSet.Builder

All Superinterfaces:
Buildable, CopyableBuilder<ImageSet.Builder,ImageSet>, SdkBuilder<ImageSet.Builder,ImageSet>, SdkPojo
Enclosing class:
ImageSet

@Mutable @NotThreadSafe public static interface ImageSet.Builder extends SdkPojo, CopyableBuilder<ImageSet.Builder,ImageSet>
  • Method Details

    • original

      ImageSet.Builder original(Image original)

      The original image.

      Parameters:
      original - The original image.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • original

      default ImageSet.Builder original(Consumer<Image.Builder> original)

      The original image.

      This is a convenience method that creates an instance of the Image.Builder avoiding the need to create one manually via Image.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to original(Image).

      Parameters:
      original - a consumer that will call methods on Image.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • height64

      ImageSet.Builder height64(Image height64)

      The image with the height set to 64 pixels.

      Parameters:
      height64 - The image with the height set to 64 pixels.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • height64

      default ImageSet.Builder height64(Consumer<Image.Builder> height64)

      The image with the height set to 64 pixels.

      This is a convenience method that creates an instance of the Image.Builder avoiding the need to create one manually via Image.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to height64(Image).

      Parameters:
      height64 - a consumer that will call methods on Image.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • height32

      ImageSet.Builder height32(Image height32)

      The image with the height set to 32 pixels.

      Parameters:
      height32 - The image with the height set to 32 pixels.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • height32

      default ImageSet.Builder height32(Consumer<Image.Builder> height32)

      The image with the height set to 32 pixels.

      This is a convenience method that creates an instance of the Image.Builder avoiding the need to create one manually via Image.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to height32(Image).

      Parameters:
      height32 - a consumer that will call methods on Image.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: