Consider Static Factory Method

There is a nice pattern to consider while develop. And that’s instead of having multiple constructors in the class and creating many instances of class to use, you should then consider the static-factory-method way.

Read More