| Package | Description |
|---|---|
| rs.baselib.type |
Commonly used data types.
|
| Modifier and Type | Method and Description |
|---|---|
Country |
Address.getCountry()
Returns the
Address.country. |
static Country |
Country.valueOf(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.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Address.setCountry(Country country)
Sets the
Address.country. |
| Constructor and Description |
|---|
Address(String street1,
String city,
String zipCode,
Country country)
Constructor.
|
Address(String street1,
String city,
String zipCode,
String state,
Country country)
Constructor.
|
Address(String street1,
String street2,
String city,
String zipCode,
String state,
Country country)
Constructor.
|
Copyright © 2014. All rights reserved.