Category: Design Patterns

Design PatternsJavaSERelevant topics

Adapter Pattern

by:

Adapter Pattern works as a bridge between two incompatible interfaces. This is a structural pattern that combines the capability of two different interfaces. Adapter Pattern involves …

Design PatternsJavaSERelevant topics

Bridge Pattern

by:

Bridge Pattern is a structural pattern that is used when there is a need to decouple an abstraction from its implementation so that they can vary …

Design PatternsJavaSERelevant topics

Factory Pattern

by:

Factory Pattern is a creational pattern as it is used for creating an object. This pattern allows to create an object without exposing the creation logic …