Effective Java - Item 1 static factory
Item 1 : Consider static factory methods instead of constructors A class can provide a public static factory method (it is not the same as the Factory Method pattern from Design Patterns) Providing a static factory method instead of a...