Class SetDescriptionChangeBuilder

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

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

     SetDescriptionChange setDescriptionChange = SetDescriptionChange.builder()
             .change("{change}")
             .previousValue("{previousValue}")
             .nextValue("{nextValue}")
             .build()
 
  • Constructor Details

    • SetDescriptionChangeBuilder

      public SetDescriptionChangeBuilder()
  • Method Details

    • change

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

      public SetDescriptionChangeBuilder previousValue(String previousValue)

      Value before the change.

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

      public SetDescriptionChangeBuilder 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 SetDescriptionChange build()
      builds SetDescriptionChange with checking for non-null required values
      Specified by:
      build in interface Builder<SetDescriptionChange>
      Returns:
      SetDescriptionChange
    • buildUnchecked

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

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

      create builder for SetDescriptionChange instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder