Class SetTextChangeBuilder

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

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

     SetTextChange setTextChange = SetTextChange.builder()
             .change("{change}")
             .previousValue("{previousValue}")
             .nextValue("{nextValue}")
             .build()
 
  • Constructor Details

    • SetTextChangeBuilder

      public SetTextChangeBuilder()
  • Method Details

    • change

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

      public SetTextChangeBuilder previousValue(String previousValue)

      Value before the change.

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

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

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

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

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