Abstract Factory Pattern
A creational design pattern that provides an interface for creating families of related or dependent objects without specifying their …
A creational design pattern that provides an interface for creating families of related or dependent objects without specifying their …
A structural design pattern that converts the interface of a class into another interface that clients expect, enabling incompatible …
A structural design pattern that decouples an abstraction from its implementation so that the two can vary independently.
A creational design pattern that separates the construction of a complex object from its representation, allowing the same construction …
A behavioral design pattern that passes a request along a chain of handlers, where each handler decides whether to process the request or …
A behavioral design pattern that encapsulates a request as an object, allowing parameterization of clients with different requests, queuing, …
A structural design pattern that composes objects into tree structures to represent part-whole hierarchies, letting clients treat individual …
A design principle that favors object composition over class inheritance for code reuse, resulting in more flexible and maintainable …
A structural design pattern that attaches additional responsibilities to an object dynamically, providing a flexible alternative to …
A structural design pattern that provides a simplified interface to a complex subsystem, reducing the coupling between clients and subsystem …
A creational design pattern that defines an interface for creating objects but lets subclasses decide which class to instantiate.
A structural design pattern that uses sharing to support large numbers of fine-grained objects efficiently by externalizing shared state.
A behavioral design pattern that defines a representation for a language's grammar and provides an interpreter to evaluate sentences in that …
A behavioral design pattern that provides a way to access elements of an aggregate object sequentially without exposing its underlying …
A behavioral design pattern that defines an object that encapsulates how a set of objects interact, promoting loose coupling by preventing …
A behavioral design pattern that captures and externalizes an object's internal state so it can be restored later, without violating …
A behavioral design pattern that defines a one-to-many dependency between objects so that when one object changes state, all its dependents …
A creational design pattern that creates new objects by cloning an existing instance, avoiding the cost of standard construction.
A structural design pattern that provides a surrogate or placeholder for another object to control access to it.
A creational design pattern that ensures a class has only one instance and provides a global point of access to it.
A behavioral design pattern that allows an object to alter its behavior when its internal state changes, appearing to change its class.
A behavioral design pattern that defines a family of algorithms, encapsulates each one, and makes them interchangeable at runtime.
A behavioral design pattern that defines the skeleton of an algorithm in a base class, letting subclasses override specific steps without …
A behavioral design pattern that lets you add new operations to existing object structures without modifying the classes of the elements on …