com.commercetools.history.models.common.ImageDimensions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commercetools-sdk-java-history Show documentation
Show all versions of commercetools-sdk-java-history Show documentation
The e-commerce SDK from commercetools Composable Commerce for Java
package com.commercetools.history.models.common;
import java.time.*;
import java.util.*;
import java.util.function.Function;
import javax.annotation.Nullable;
import javax.validation.constraints.NotNull;
import com.fasterxml.jackson.annotation.*;
import com.fasterxml.jackson.databind.annotation.*;
import io.vrap.rmf.base.client.utils.Generated;
/**
* ImageDimensions
*
*
* Example to create an instance using the builder pattern
*
*
* ImageDimensions imageDimensions = ImageDimensions.builder()
* .w(1)
* .h(1)
* .build()
*
*
*/
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
@JsonDeserialize(as = ImageDimensionsImpl.class)
public interface ImageDimensions {
/**
*
* @return w
*/
@NotNull
@JsonProperty("w")
public Integer getW();
/**
*
* @return h
*/
@NotNull
@JsonProperty("h")
public Integer getH();
/**
* set w
* @param w value to be set
*/
public void setW(final Integer w);
/**
* set h
* @param h value to be set
*/
public void setH(final Integer h);
/**
* factory method
* @return instance of ImageDimensions
*/
public static ImageDimensions of() {
return new ImageDimensionsImpl();
}
/**
* factory method to create a shallow copy ImageDimensions
* @param template instance to be copied
* @return copy instance
*/
public static ImageDimensions of(final ImageDimensions template) {
ImageDimensionsImpl instance = new ImageDimensionsImpl();
instance.setW(template.getW());
instance.setH(template.getH());
return instance;
}
/**
* factory method to create a deep copy of ImageDimensions
* @param template instance to be copied
* @return copy instance
*/
@Nullable
public static ImageDimensions deepCopy(@Nullable final ImageDimensions template) {
if (template == null) {
return null;
}
ImageDimensionsImpl instance = new ImageDimensionsImpl();
instance.setW(template.getW());
instance.setH(template.getH());
return instance;
}
/**
* builder factory method for ImageDimensions
* @return builder
*/
public static ImageDimensionsBuilder builder() {
return ImageDimensionsBuilder.of();
}
/**
* create builder for ImageDimensions instance
* @param template instance with prefilled values for the builder
* @return builder
*/
public static ImageDimensionsBuilder builder(final ImageDimensions template) {
return ImageDimensionsBuilder.of(template);
}
/**
* accessor map function
* @param mapped type
* @param helper function to map the object
* @return mapped value
*/
default T withImageDimensions(Function helper) {
return helper.apply(this);
}
/**
* gives a TypeReference for usage with Jackson DataBind
* @return TypeReference
*/
public static com.fasterxml.jackson.core.type.TypeReference typeReference() {
return new com.fasterxml.jackson.core.type.TypeReference() {
@Override
public String toString() {
return "TypeReference";
}
};
}
}