The document discusses three design patterns: Factory Method, Prototype, and Builder. Factory Method defines an interface for creating objects but lets subclasses decide which class to instantiate. Prototype specifies the kinds of objects to create using a prototypical instance that new objects can be cloned from. Builder separates the construction of a complex object from its representation so that the same construction process can create different representations.