public static enum PhoneNumber.Format extends java.lang.Enum<PhoneNumber.Format>
| Enum Constant and Description |
|---|
e164 |
international |
national |
rfc3966 |
| Modifier and Type | Method and Description |
|---|---|
static PhoneNumber.Format |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PhoneNumber.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PhoneNumber.Format e164
public static final PhoneNumber.Format international
public static final PhoneNumber.Format national
public static final PhoneNumber.Format rfc3966
public static PhoneNumber.Format[] values()
for (PhoneNumber.Format c : PhoneNumber.Format.values()) System.out.println(c);
public static PhoneNumber.Format 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 © 2013 echocat. All Rights Reserved.