Hi,

Where can I find info on how to set types?

For example I know string and boolean but I don't know about Address, etc.

Code:
    public  final String FIRST_NAME = "";
    public final String LAST_NAME = "";
    public final Address ADDRESS = "";
    public final String PHONE_NUMBER ="";
    public final boolean FULL_TIME = false;
    public final boolean CURRENT = false;
Thanks,


Nightwalker