Subhrodip Mohanta 8aac45ab69
maintenance: Update Spacing of XML (#1866)
PR Set 4 of 4
2021-10-19 20:56:44 +03:00
..
2019-12-07 18:03:49 +02:00

layout, title, folder, permalink, categories, language, tags
layout title folder permalink categories language tags
pattern Step Builder step-builder /patterns/step-builder/ Creational en
Instantiation

Intent

An extension of the Builder pattern that fully guides the user through the creation of the object with no chances of confusion. The user experience will be much more improved by the fact that he will only see the next step methods available, NO build method until is the right time to build the object.

Class diagram

alt text

Applicability

Use the Step Builder pattern when the algorithm for creating a complex object should be independent of the parts that make up the object and how they're assembled the construction process must allow different representations for the object that's constructed when in the process of constructing the order is important.

Credits