Enum InputPhone.PlaceholderNumberType
- java.lang.Object
-
- java.lang.Enum<InputPhone.PlaceholderNumberType>
-
- org.primefaces.extensions.component.inputphone.InputPhone.PlaceholderNumberType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<InputPhone.PlaceholderNumberType>
- Enclosing class:
- InputPhone
public static enum InputPhone.PlaceholderNumberType extends java.lang.Enum<InputPhone.PlaceholderNumberType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description fixed_linemobilepagerpersonal_numbershared_costtoll_freeuanunknownvoicemailvoip
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InputPhone.PlaceholderNumberTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static InputPhone.PlaceholderNumberType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
fixed_line
public static final InputPhone.PlaceholderNumberType fixed_line
-
mobile
public static final InputPhone.PlaceholderNumberType mobile
-
toll_free
public static final InputPhone.PlaceholderNumberType toll_free
-
shared_cost
public static final InputPhone.PlaceholderNumberType shared_cost
-
voip
public static final InputPhone.PlaceholderNumberType voip
-
personal_number
public static final InputPhone.PlaceholderNumberType personal_number
-
pager
public static final InputPhone.PlaceholderNumberType pager
-
uan
public static final InputPhone.PlaceholderNumberType uan
-
voicemail
public static final InputPhone.PlaceholderNumberType voicemail
-
unknown
public static final InputPhone.PlaceholderNumberType unknown
-
-
Method Detail
-
values
public static InputPhone.PlaceholderNumberType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (InputPhone.PlaceholderNumberType c : InputPhone.PlaceholderNumberType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InputPhone.PlaceholderNumberType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-