SE450
:
Not a FACTORY METHOD
[24/55]
Not all "factory-like" methods are instances of this pattern
Create
DateFormat
instances
DateFormat formatter = DateFormat.getDateInstance();
Date now = new Date();
String formattedDate = formatter.format(now);
getDateInstance
is a
static
method
No polymorphic creation