public static enum CommonPhoneNumber.Purpose extends Enum<CommonPhoneNumber.Purpose>
| Enum Constant and Description |
|---|
HOME |
INTERNATIONAL |
MOBILE |
OTHER |
UNSPECIFIED |
WORK |
| Modifier and Type | Method and Description |
|---|---|
static CommonPhoneNumber.Purpose |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommonPhoneNumber.Purpose[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommonPhoneNumber.Purpose MOBILE
public static final CommonPhoneNumber.Purpose HOME
public static final CommonPhoneNumber.Purpose WORK
public static final CommonPhoneNumber.Purpose OTHER
public static final CommonPhoneNumber.Purpose INTERNATIONAL
public static final CommonPhoneNumber.Purpose UNSPECIFIED
public static CommonPhoneNumber.Purpose[] values()
for (CommonPhoneNumber.Purpose c : CommonPhoneNumber.Purpose.values()) System.out.println(c);
public static CommonPhoneNumber.Purpose valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.