Class SetValueChangeBuilder

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

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

     SetValueChange setValueChange = SetValueChange.builder()
             .change("{change}")
             .build()
 
  • Constructor Details

    • SetValueChangeBuilder

      public SetValueChangeBuilder()
  • Method Details

    • change

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

      public SetValueChangeBuilder previousValue(Object previousValue)

      Value before the change.

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

      public SetValueChangeBuilder nextValue(Object nextValue)

      Value after the change.

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

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

      public Object getPreviousValue()

      Value before the change.

      Returns:
      previousValue
    • getNextValue

      public Object getNextValue()

      Value after the change.

      Returns:
      nextValue
    • build

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

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

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

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