public enum SelectedMailingAddress extends java.lang.Enum<SelectedMailingAddress>
| Enum Constant and Description |
|---|
BUSINESS
Business mailing address.
|
HOME
Home mailing address.
|
NONE
No mailing address defined.
|
OTHER
Other mailing address.
|
| Modifier and Type | Method and Description |
|---|---|
static SelectedMailingAddress |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SelectedMailingAddress[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SelectedMailingAddress BUSINESS
public static final SelectedMailingAddress HOME
public static final SelectedMailingAddress OTHER
public static final SelectedMailingAddress NONE
public static SelectedMailingAddress[] values()
for (SelectedMailingAddress c : SelectedMailingAddress.values()) System.out.println(c);
public static SelectedMailingAddress valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null