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

com.commercetools.history.models.change.RemoveAssetChangeBuilder 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;

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

 *     RemoveAssetChange removeAssetChange = RemoveAssetChange.builder()
 *             .change("{change}")
 *             .previousValue(previousValueBuilder -> previousValueBuilder)
 *             .build()
 * 
*
*/ @Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen") public class RemoveAssetChangeBuilder implements Builder { private String change; private com.commercetools.history.models.common.Asset previousValue; /** * set the value to the change * @param change value to be set * @return Builder */ public RemoveAssetChangeBuilder change(final String change) { this.change = change; return this; } /** *

Value before the change.

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

Value before the change.

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

Value before the change.

* @param previousValue value to be set * @return Builder */ public RemoveAssetChangeBuilder previousValue(final com.commercetools.history.models.common.Asset previousValue) { this.previousValue = previousValue; return this; } /** * value of change} * @return change */ public String getChange() { return this.change; } /** *

Value before the change.

* @return previousValue */ public com.commercetools.history.models.common.Asset getPreviousValue() { return this.previousValue; } /** * builds RemoveAssetChange with checking for non-null required values * @return RemoveAssetChange */ public RemoveAssetChange build() { Objects.requireNonNull(change, RemoveAssetChange.class + ": change is missing"); Objects.requireNonNull(previousValue, RemoveAssetChange.class + ": previousValue is missing"); return new RemoveAssetChangeImpl(change, previousValue); } /** * builds RemoveAssetChange without checking for non-null required values * @return RemoveAssetChange */ public RemoveAssetChange buildUnchecked() { return new RemoveAssetChangeImpl(change, previousValue); } /** * factory method for an instance of RemoveAssetChangeBuilder * @return builder */ public static RemoveAssetChangeBuilder of() { return new RemoveAssetChangeBuilder(); } /** * create builder for RemoveAssetChange instance * @param template instance with prefilled values for the builder * @return builder */ public static RemoveAssetChangeBuilder of(final RemoveAssetChange template) { RemoveAssetChangeBuilder builder = new RemoveAssetChangeBuilder(); builder.change = template.getChange(); builder.previousValue = template.getPreviousValue(); return builder; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy