public static enum PhoneNumberUtil.PhoneNumberFormat extends java.lang.Enum<PhoneNumberUtil.PhoneNumberFormat>
Enum Constant and Description |
---|
E164 |
INTERNATIONAL |
NATIONAL |
RFC3966 |
Modifier and Type | Method and Description |
---|---|
static PhoneNumberUtil.PhoneNumberFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PhoneNumberUtil.PhoneNumberFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PhoneNumberUtil.PhoneNumberFormat E164
public static final PhoneNumberUtil.PhoneNumberFormat INTERNATIONAL
public static final PhoneNumberUtil.PhoneNumberFormat NATIONAL
public static final PhoneNumberUtil.PhoneNumberFormat RFC3966
public static PhoneNumberUtil.PhoneNumberFormat[] values()
for (PhoneNumberUtil.PhoneNumberFormat c : PhoneNumberUtil.PhoneNumberFormat.values()) System.out.println(c);
public static PhoneNumberUtil.PhoneNumberFormat 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 nullCopyright © 2021 Google. All Rights Reserved.