Class AddTaxRateChangeBuilder

java.lang.Object
com.commercetools.history.models.change.AddTaxRateChangeBuilder
All Implemented Interfaces:
Builder<AddTaxRateChange>

public class AddTaxRateChangeBuilder extends Object implements Builder<AddTaxRateChange>
AddTaxRateChangeBuilder
Example to create an instance using the builder pattern

     AddTaxRateChange addTaxRateChange = AddTaxRateChange.builder()
             .change("{change}")
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .build()
 
  • Constructor Details

    • AddTaxRateChangeBuilder

      public AddTaxRateChangeBuilder()
  • Method Details

    • change

      public AddTaxRateChangeBuilder change(String change)
      set the value to the change
      Parameters:
      change - value to be set
      Returns:
      Builder
    • nextValue

      Value after the change.

      Parameters:
      builder - function to build the nextValue value
      Returns:
      Builder
    • withNextValue

      public AddTaxRateChangeBuilder withNextValue(Function<TaxRateBuilder,TaxRate> builder)

      Value after the change.

      Parameters:
      builder - function to build the nextValue value
      Returns:
      Builder
    • nextValue

      public AddTaxRateChangeBuilder nextValue(TaxRate nextValue)

      Value after the change.

      Parameters:
      nextValue - value to be set
      Returns:
      Builder
    • getChange

      public String getChange()
      value of change}
      Returns:
      change
    • getNextValue

      public TaxRate getNextValue()

      Value after the change.

      Returns:
      nextValue
    • build

      public AddTaxRateChange build()
      builds AddTaxRateChange with checking for non-null required values
      Specified by:
      build in interface Builder<AddTaxRateChange>
      Returns:
      AddTaxRateChange
    • buildUnchecked

      public AddTaxRateChange buildUnchecked()
      builds AddTaxRateChange without checking for non-null required values
      Returns:
      AddTaxRateChange
    • of

      public static AddTaxRateChangeBuilder of()
      factory method for an instance of AddTaxRateChangeBuilder
      Returns:
      builder
    • of

      public static AddTaxRateChangeBuilder of(AddTaxRateChange template)
      create builder for AddTaxRateChange instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder