Class SetSalutationChangeBuilder

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

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

     SetSalutationChange setSalutationChange = SetSalutationChange.builder()
             .change("{change}")
             .previousValue("{previousValue}")
             .nextValue("{nextValue}")
             .build()
 
  • Constructor Details

    • SetSalutationChangeBuilder

      public SetSalutationChangeBuilder()
  • Method Details

    • change

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

      public SetSalutationChangeBuilder previousValue(String previousValue)

      Value before the change.

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

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

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

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

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