public static Car ofName(String name) { if (name == null) { return null; } } public static void main(String[] args) { new Car("a"); Car.ofName("a");