You need to make Gender and Age non-static otherwise these fields will only retain a single value per class member variable:
public String gender;
public Integer age;
Aside: Java naming conventions indicate that variables start with lowercase letters making Gender gender, etc.