Package com.adyen.model.balanceplatform
Enum Phone.TypeEnum
- java.lang.Object
-
- java.lang.Enum<Phone.TypeEnum>
-
- com.adyen.model.balanceplatform.Phone.TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<Phone.TypeEnum>
- Enclosing class:
- Phone
public static enum Phone.TypeEnum extends Enum<Phone.TypeEnum>
Type of phone number. Possible values: **Landline**, **Mobile**.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Phone.TypeEnumfromValue(String value)StringgetValue()StringtoString()static Phone.TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static Phone.TypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LANDLINE
public static final Phone.TypeEnum LANDLINE
-
MOBILE
public static final Phone.TypeEnum MOBILE
-
-
Method Detail
-
values
public static Phone.TypeEnum[] 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 (Phone.TypeEnum c : Phone.TypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Phone.TypeEnum valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<Phone.TypeEnum>
-
fromValue
public static Phone.TypeEnum fromValue(String value)
-
-