com.commercetools.history.models.change.SetInputTipChangeBuilder 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.change;
import java.util.*;
import java.util.function.Function;
import io.vrap.rmf.base.client.Builder;
import io.vrap.rmf.base.client.utils.Generated;
/**
* SetInputTipChangeBuilder
*
* Example to create an instance using the builder pattern
*
*
* SetInputTipChange setInputTipChange = SetInputTipChange.builder()
* .change("{change}")
* .previousValue(previousValueBuilder -> previousValueBuilder)
* .nextValue(nextValueBuilder -> nextValueBuilder)
* .attributeName("{attributeName}")
* .build()
*
*
*/
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
public class SetInputTipChangeBuilder implements Builder {
private String change;
private com.commercetools.history.models.common.LocalizedString previousValue;
private com.commercetools.history.models.common.LocalizedString nextValue;
private String attributeName;
/**
* set the value to the change
* @param change value to be set
* @return Builder
*/
public SetInputTipChangeBuilder change(final String change) {
this.change = change;
return this;
}
/**
* Value before the change.
* @param builder function to build the previousValue value
* @return Builder
*/
public SetInputTipChangeBuilder previousValue(
Function builder) {
this.previousValue = builder.apply(com.commercetools.history.models.common.LocalizedStringBuilder.of()).build();
return this;
}
/**
* Value before the change.
* @param builder function to build the previousValue value
* @return Builder
*/
public SetInputTipChangeBuilder withPreviousValue(
Function builder) {
this.previousValue = builder.apply(com.commercetools.history.models.common.LocalizedStringBuilder.of());
return this;
}
/**
* Value before the change.
* @param previousValue value to be set
* @return Builder
*/
public SetInputTipChangeBuilder previousValue(
final com.commercetools.history.models.common.LocalizedString previousValue) {
this.previousValue = previousValue;
return this;
}
/**
* Value after the change.
* @param builder function to build the nextValue value
* @return Builder
*/
public SetInputTipChangeBuilder nextValue(
Function builder) {
this.nextValue = builder.apply(com.commercetools.history.models.common.LocalizedStringBuilder.of()).build();
return this;
}
/**
* Value after the change.
* @param builder function to build the nextValue value
* @return Builder
*/
public SetInputTipChangeBuilder withNextValue(
Function builder) {
this.nextValue = builder.apply(com.commercetools.history.models.common.LocalizedStringBuilder.of());
return this;
}
/**
* Value after the change.
* @param nextValue value to be set
* @return Builder
*/
public SetInputTipChangeBuilder nextValue(final com.commercetools.history.models.common.LocalizedString nextValue) {
this.nextValue = nextValue;
return this;
}
/**
* Name of the updated AttributeDefinition.
* @param attributeName value to be set
* @return Builder
*/
public SetInputTipChangeBuilder attributeName(final String attributeName) {
this.attributeName = attributeName;
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.LocalizedString getPreviousValue() {
return this.previousValue;
}
/**
* Value after the change.
* @return nextValue
*/
public com.commercetools.history.models.common.LocalizedString getNextValue() {
return this.nextValue;
}
/**
* Name of the updated AttributeDefinition.
* @return attributeName
*/
public String getAttributeName() {
return this.attributeName;
}
/**
* builds SetInputTipChange with checking for non-null required values
* @return SetInputTipChange
*/
public SetInputTipChange build() {
Objects.requireNonNull(change, SetInputTipChange.class + ": change is missing");
Objects.requireNonNull(previousValue, SetInputTipChange.class + ": previousValue is missing");
Objects.requireNonNull(nextValue, SetInputTipChange.class + ": nextValue is missing");
Objects.requireNonNull(attributeName, SetInputTipChange.class + ": attributeName is missing");
return new SetInputTipChangeImpl(change, previousValue, nextValue, attributeName);
}
/**
* builds SetInputTipChange without checking for non-null required values
* @return SetInputTipChange
*/
public SetInputTipChange buildUnchecked() {
return new SetInputTipChangeImpl(change, previousValue, nextValue, attributeName);
}
/**
* factory method for an instance of SetInputTipChangeBuilder
* @return builder
*/
public static SetInputTipChangeBuilder of() {
return new SetInputTipChangeBuilder();
}
/**
* create builder for SetInputTipChange instance
* @param template instance with prefilled values for the builder
* @return builder
*/
public static SetInputTipChangeBuilder of(final SetInputTipChange template) {
SetInputTipChangeBuilder builder = new SetInputTipChangeBuilder();
builder.change = template.getChange();
builder.previousValue = template.getPreviousValue();
builder.nextValue = template.getNextValue();
builder.attributeName = template.getAttributeName();
return builder;
}
}