Uses of Class
rs.baselib.type.Country

Packages that use Country 
Package Description
rs.baselib.type
Commonly used data types.
  • Uses of Country in rs.baselib.type

    Methods in rs.baselib.type that return Country 
    Modifier and Type Method Description
    Country Address.getCountry()
    Returns the Address.country.
    static Country Country.valueOf​(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static Country[] Country.values()
    Returns an array containing the constants of this enum type, in the order they are declared.
    Methods in rs.baselib.type with parameters of type Country 
    Modifier and Type Method Description
    void Address.setCountry​(Country country)
    Sets the Address.country.
    Constructors in rs.baselib.type with parameters of type Country 
    Constructor Description
    Address​(java.lang.String street1, java.lang.String street2, java.lang.String city, java.lang.String zipCode, java.lang.String state, Country country)
    Constructor.
    Address​(java.lang.String street1, java.lang.String city, java.lang.String zipCode, java.lang.String state, Country country)
    Constructor.
    Address​(java.lang.String street1, java.lang.String city, java.lang.String zipCode, Country country)
    Constructor.