public enum PhysicalAddressType extends java.lang.Enum<PhysicalAddressType>
| Enum Constant and Description |
|---|
BUSINESS
business
|
HOME
home
|
OTHER
other
|
UNEXPECTED_VALUE
For PhysicalAddressType values that were not expected from the service
|
UNKNOWN
unknown
|
| Modifier and Type | Method and Description |
|---|---|
static PhysicalAddressType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PhysicalAddressType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PhysicalAddressType UNKNOWN
public static final PhysicalAddressType HOME
public static final PhysicalAddressType BUSINESS
public static final PhysicalAddressType OTHER
public static final PhysicalAddressType UNEXPECTED_VALUE
public static PhysicalAddressType[] values()
for (PhysicalAddressType c : PhysicalAddressType.values()) System.out.println(c);
public static PhysicalAddressType 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