2020-09-03 22:08:54 +01:00
---
layout : pattern
title : Factory
folder : factory
permalink : /patterns/factory/
categories : Creational
2021-05-19 10:49:05 -06:00
language : en
2020-09-03 22:08:54 +01:00
tags :
- Gang of Four
---
## Also known as
* Simple Factory
* Static Factory Method
## Intent
2021-06-24 15:57:20 +03:00
Providing a static method encapsulated in a class called the factory, to hide the implementation
logic and make client code focus on usage rather than initializing new objects.
2020-09-03 22:08:54 +01:00
## Explanation
2021-06-24 15:57:20 +03:00
Real-world example
2020-09-03 22:08:54 +01:00
2021-06-24 15:57:20 +03:00
> Imagine an alchemist who is about to manufacture coins. The alchemist must be able to create both
> gold and copper coins and switching between them must be possible without modifying the existing
> source code. The factory pattern makes it possible by providing a static construction method which
> can be called with relevant parameters.
2020-09-03 22:08:54 +01:00
Wikipedia says
2020-09-06 19:46:13 +03:00
> Factory is an object for creating other objects – formally a factory is a function or method that
> returns objects of a varying prototype or class.
2020-09-03 22:08:54 +01:00
**Programmatic Example**
2021-06-24 15:57:20 +03:00
We have an interface `Coin` and two implementations `GoldCoin` and `CopperCoin` .
2020-09-03 22:08:54 +01:00
```java
2021-06-24 15:57:20 +03:00
public interface Coin {
2020-09-06 19:46:13 +03:00
String getDescription ();
2020-09-03 22:08:54 +01:00
}
2021-06-24 15:57:20 +03:00
public class GoldCoin implements Coin {
2020-09-03 22:08:54 +01:00
2021-06-24 15:57:20 +03:00
static final String DESCRIPTION = "This is a gold coin." ;
2020-09-03 22:08:54 +01:00
@Override
public String getDescription () {
return DESCRIPTION ;
}
}
2021-06-24 15:57:20 +03:00
public class CopperCoin implements Coin {
2020-09-03 22:08:54 +01:00
2021-06-24 15:57:20 +03:00
static final String DESCRIPTION = "This is a copper coin." ;
2020-09-03 22:08:54 +01:00
@Override
public String getDescription () {
return DESCRIPTION ;
}
}
```
2021-06-24 15:57:20 +03:00
Enumeration above represents types of coins that we support (`GoldCoin` and `CopperCoin` ).
2020-09-04 21:21:51 +01:00
```java
2021-06-24 15:57:20 +03:00
@RequiredArgsConstructor
@Getter
public enum CoinType {
COPPER ( CopperCoin :: new ),
GOLD ( GoldCoin :: new );
private final Supplier < Coin > constructor ;
2020-09-04 21:21:51 +01:00
}
```
2021-06-24 15:57:20 +03:00
Then we have the static method `getCoin` to create coin objects encapsulated in the factory class
`CoinFactory` .
2020-09-03 22:08:54 +01:00
```java
2021-06-24 15:57:20 +03:00
public class CoinFactory {
public static Coin getCoin ( CoinType type ) {
2020-09-04 21:21:51 +01:00
return type . getConstructor (). get ();
2020-09-03 22:08:54 +01:00
}
}
```
2021-06-24 15:57:20 +03:00
Now on the client code we can create different types of coins using the factory class.
2020-09-03 22:08:54 +01:00
```java
2021-06-24 15:57:20 +03:00
LOGGER . info ( "The alchemist begins his work." );
var coin1 = CoinFactory . getCoin ( CoinType . COPPER );
var coin2 = CoinFactory . getCoin ( CoinType . GOLD );
LOGGER . info ( coin1 . getDescription ());
LOGGER . info ( coin2 . getDescription ());
2020-09-03 22:08:54 +01:00
```
Program output:
```java
2021-06-24 15:57:20 +03:00
The alchemist begins his work .
This is a copper coin .
This is a gold coin .
2020-09-03 22:08:54 +01:00
```
2020-09-06 19:46:13 +03:00
2020-09-05 18:39:28 +01:00
## Class Diagram
2020-09-06 19:46:13 +03:00
2020-09-05 18:39:28 +01:00

2020-09-03 22:08:54 +01:00
2020-09-05 18:39:28 +01:00
## Applicability
2020-09-03 22:08:54 +01:00
2021-06-24 15:57:20 +03:00
Use the factory pattern when you only care about the creation of a object, not how to create
2020-09-06 19:46:13 +03:00
and manage it.
Pros
2020-09-06 19:55:38 +03:00
2020-12-05 14:04:49 +05:30
* Allows keeping all objects creation in one place and avoid of spreading 'new' keyword across codebase.
* Allows to write loosely coupled code. Some of its main advantages include better testability, easy-to-understand code, swappable components, scalability and isolated features.
2020-09-03 22:08:54 +01:00
2020-09-06 19:46:13 +03:00
Cons
2020-09-06 19:55:38 +03:00
2020-09-05 18:39:28 +01:00
* The code becomes more complicated than it should be.
2020-09-03 22:08:54 +01:00
2021-06-24 15:57:20 +03:00
## Known uses
2020-12-13 10:33:43 -05:00
* [java.util.Calendar#getInstance() ](https://docs.oracle.com/javase/8/docs/api/java/util/Calendar.html#getInstance-- )
* [java.util.ResourceBundle#getBundle() ](https://docs.oracle.com/javase/8/docs/api/java/util/ResourceBundle.html#getBundle-java.lang.String- )
* [java.text.NumberFormat#getInstance() ](https://docs.oracle.com/javase/8/docs/api/java/text/NumberFormat.html#getInstance-- )
* [java.nio.charset.Charset#forName() ](https://docs.oracle.com/javase/8/docs/api/java/nio/charset/Charset.html#forName-java.lang.String- )
2021-06-24 15:57:20 +03:00
* [java.net.URLStreamHandlerFactory#createURLStreamHandler(String) ](https://docs.oracle.com/javase/8/docs/api/java/net/URLStreamHandlerFactory.html ) (returns different singleton objects, depending on a protocol)
2020-12-13 10:33:43 -05:00
* [java.util.EnumSet#of() ](https://docs.oracle.com/javase/8/docs/api/java/util/EnumSet.html#of(E ))
* [javax.xml.bind.JAXBContext#createMarshaller() ](https://docs.oracle.com/javase/8/docs/api/javax/xml/bind/JAXBContext.html#createMarshaller-- ) and other similar methods.
2020-09-03 22:08:54 +01:00
## Related patterns
2020-09-06 19:56:07 +03:00
* [Factory Method ](https://java-design-patterns.com/patterns/factory-method/ )
* [Factory Kit ](https://java-design-patterns.com/patterns/factory-kit/ )
* [Abstract Factory ](https://java-design-patterns.com/patterns/abstract-factory/ )