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