Interface SetMethodInfoNameChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetMethodInfoNameChangeImpl

public interface SetMethodInfoNameChange extends Change

Change triggered by the Set MethodInfoName update action.


Example to create an instance using the builder pattern

     SetMethodInfoNameChange setMethodInfoNameChange = SetMethodInfoNameChange.builder()
             .change("{change}")
             .previousValue(previousValueBuilder -> previousValueBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .build()