class Person{
public static Person newInstance(){
return new Person();
}
public static Person newInstance(String nombre){
return new Person(nombre);
}
public static Person newInstance(String nombre, int edad){
return new Person(nombre, edad...);
}
public static Person newInstance(String nombre, int edad, Date nacimiento){
return new Person(nombre, edad...);
}
public static Person newInstance(String nombre, int edad, Date nacimiento, Ciudad ciudad){
return new Person(nombre, edad...);
}
...
}