All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.commercetools.history.models.change.SetAddressCustomFieldChangeBuilder Maven / Gradle / Ivy

There is a newer version: 17.15.1
Show newest version

package com.commercetools.history.models.change;

import java.util.*;
import java.util.function.Function;

import io.vrap.rmf.base.client.Builder;
import io.vrap.rmf.base.client.utils.Generated;

/**
 * SetAddressCustomFieldChangeBuilder
 * 
* Example to create an instance using the builder pattern *
*

 *     SetAddressCustomFieldChange setAddressCustomFieldChange = SetAddressCustomFieldChange.builder()
 *             .change("{change}")
 *             .address(addressBuilder -> addressBuilder)
 *             .name("{name}")
 *             .customTypeId("{customTypeId}")
 *             .build()
 * 
*
*/ @Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen") public class SetAddressCustomFieldChangeBuilder implements Builder { private String change; private com.commercetools.history.models.common.Address address; private String name; private String customTypeId; private java.lang.Object previousValue; private java.lang.Object nextValue; /** * set the value to the change * @param change value to be set * @return Builder */ public SetAddressCustomFieldChangeBuilder change(final String change) { this.change = change; return this; } /** *

Address which was extended.

* @param builder function to build the address value * @return Builder */ public SetAddressCustomFieldChangeBuilder address( Function builder) { this.address = builder.apply(com.commercetools.history.models.common.AddressBuilder.of()).build(); return this; } /** *

Address which was extended.

* @param builder function to build the address value * @return Builder */ public SetAddressCustomFieldChangeBuilder withAddress( Function builder) { this.address = builder.apply(com.commercetools.history.models.common.AddressBuilder.of()); return this; } /** *

Address which was extended.

* @param address value to be set * @return Builder */ public SetAddressCustomFieldChangeBuilder address(final com.commercetools.history.models.common.Address address) { this.address = address; return this; } /** *

Name of the Custom Field.

* @param name value to be set * @return Builder */ public SetAddressCustomFieldChangeBuilder name(final String name) { this.name = name; return this; } /** *

id of the referenced Type.

* @param customTypeId value to be set * @return Builder */ public SetAddressCustomFieldChangeBuilder customTypeId(final String customTypeId) { this.customTypeId = customTypeId; return this; } /** *

Value before the change.

* @param previousValue value to be set * @return Builder */ public SetAddressCustomFieldChangeBuilder previousValue(final java.lang.Object previousValue) { this.previousValue = previousValue; return this; } /** *

Value after the change.

* @param nextValue value to be set * @return Builder */ public SetAddressCustomFieldChangeBuilder nextValue(final java.lang.Object nextValue) { this.nextValue = nextValue; return this; } /** * value of change} * @return change */ public String getChange() { return this.change; } /** *

Address which was extended.

* @return address */ public com.commercetools.history.models.common.Address getAddress() { return this.address; } /** *

Name of the Custom Field.

* @return name */ public String getName() { return this.name; } /** *

id of the referenced Type.

* @return customTypeId */ public String getCustomTypeId() { return this.customTypeId; } /** *

Value before the change.

* @return previousValue */ public java.lang.Object getPreviousValue() { return this.previousValue; } /** *

Value after the change.

* @return nextValue */ public java.lang.Object getNextValue() { return this.nextValue; } /** * builds SetAddressCustomFieldChange with checking for non-null required values * @return SetAddressCustomFieldChange */ public SetAddressCustomFieldChange build() { Objects.requireNonNull(change, SetAddressCustomFieldChange.class + ": change is missing"); Objects.requireNonNull(address, SetAddressCustomFieldChange.class + ": address is missing"); Objects.requireNonNull(name, SetAddressCustomFieldChange.class + ": name is missing"); Objects.requireNonNull(customTypeId, SetAddressCustomFieldChange.class + ": customTypeId is missing"); Objects.requireNonNull(previousValue, SetAddressCustomFieldChange.class + ": previousValue is missing"); Objects.requireNonNull(nextValue, SetAddressCustomFieldChange.class + ": nextValue is missing"); return new SetAddressCustomFieldChangeImpl(change, address, name, customTypeId, previousValue, nextValue); } /** * builds SetAddressCustomFieldChange without checking for non-null required values * @return SetAddressCustomFieldChange */ public SetAddressCustomFieldChange buildUnchecked() { return new SetAddressCustomFieldChangeImpl(change, address, name, customTypeId, previousValue, nextValue); } /** * factory method for an instance of SetAddressCustomFieldChangeBuilder * @return builder */ public static SetAddressCustomFieldChangeBuilder of() { return new SetAddressCustomFieldChangeBuilder(); } /** * create builder for SetAddressCustomFieldChange instance * @param template instance with prefilled values for the builder * @return builder */ public static SetAddressCustomFieldChangeBuilder of(final SetAddressCustomFieldChange template) { SetAddressCustomFieldChangeBuilder builder = new SetAddressCustomFieldChangeBuilder(); builder.change = template.getChange(); builder.address = template.getAddress(); builder.name = template.getName(); builder.customTypeId = template.getCustomTypeId(); builder.previousValue = template.getPreviousValue(); builder.nextValue = template.getNextValue(); return builder; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy