com.commercetools.history.models.change.ChangeInitialChangeBuilder 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 io.vrap.rmf.base.client.Builder;
import io.vrap.rmf.base.client.utils.Generated;
/**
* ChangeInitialChangeBuilder
*
* Example to create an instance using the builder pattern
*
*
* ChangeInitialChange changeInitialChange = ChangeInitialChange.builder()
* .change("{change}")
* .previousValue(true)
* .nextValue(true)
* .build()
*
*
*/
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
public class ChangeInitialChangeBuilder implements Builder {
private String change;
private Boolean previousValue;
private Boolean nextValue;
/**
* set the value to the change
* @param change value to be set
* @return Builder
*/
public ChangeInitialChangeBuilder change(final String change) {
this.change = change;
return this;
}
/**
* Value before the change.
* @param previousValue value to be set
* @return Builder
*/
public ChangeInitialChangeBuilder previousValue(final Boolean previousValue) {
this.previousValue = previousValue;
return this;
}
/**
* Value after the change.
* @param nextValue value to be set
* @return Builder
*/
public ChangeInitialChangeBuilder nextValue(final Boolean nextValue) {
this.nextValue = nextValue;
return this;
}
/**
* value of change}
* @return change
*/
public String getChange() {
return this.change;
}
/**
* Value before the change.
* @return previousValue
*/
public Boolean getPreviousValue() {
return this.previousValue;
}
/**
* Value after the change.
* @return nextValue
*/
public Boolean getNextValue() {
return this.nextValue;
}
/**
* builds ChangeInitialChange with checking for non-null required values
* @return ChangeInitialChange
*/
public ChangeInitialChange build() {
Objects.requireNonNull(change, ChangeInitialChange.class + ": change is missing");
Objects.requireNonNull(previousValue, ChangeInitialChange.class + ": previousValue is missing");
Objects.requireNonNull(nextValue, ChangeInitialChange.class + ": nextValue is missing");
return new ChangeInitialChangeImpl(change, previousValue, nextValue);
}
/**
* builds ChangeInitialChange without checking for non-null required values
* @return ChangeInitialChange
*/
public ChangeInitialChange buildUnchecked() {
return new ChangeInitialChangeImpl(change, previousValue, nextValue);
}
/**
* factory method for an instance of ChangeInitialChangeBuilder
* @return builder
*/
public static ChangeInitialChangeBuilder of() {
return new ChangeInitialChangeBuilder();
}
/**
* create builder for ChangeInitialChange instance
* @param template instance with prefilled values for the builder
* @return builder
*/
public static ChangeInitialChangeBuilder of(final ChangeInitialChange template) {
ChangeInitialChangeBuilder builder = new ChangeInitialChangeBuilder();
builder.change = template.getChange();
builder.previousValue = template.getPreviousValue();
builder.nextValue = template.getNextValue();
return builder;
}
}