Class SetCountryChangeBuilder

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

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

     SetCountryChange setCountryChange = SetCountryChange.builder()
             .change("{change}")
             .previousValue("{previousValue}")
             .nextValue("{nextValue}")
             .build()
 
  • Constructor Details

    • SetCountryChangeBuilder

      public SetCountryChangeBuilder()
  • Method Details

    • change

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

      public SetCountryChangeBuilder previousValue(String previousValue)

      Value before the change.

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

      public SetCountryChangeBuilder nextValue(String nextValue)

      Value after the change.

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

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

      public String getPreviousValue()

      Value before the change.

      Returns:
      previousValue
    • getNextValue

      public String getNextValue()

      Value after the change.

      Returns:
      nextValue
    • build

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

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

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

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