So I changed String address to Address address with another class type I have declared. However my constructor can't accept the string for the address anymore. How do I initialize my address values for the objects I create with the constructor. My constructor is listed below.
public Person(int id, String firstName, String lastName, Address address, long phone) {
this.id = id;
this.firstName = firstName;
this.lastName = lastName;
this.address = address;
this.phone = phone;
}