Package com.adyen.model.tapi
Enum IdentificationType
- java.lang.Object
-
- java.lang.Enum<IdentificationType>
-
- com.adyen.model.tapi.IdentificationType
-
- All Implemented Interfaces:
Serializable,Comparable<IdentificationType>
public enum IdentificationType extends Enum<IdentificationType>
Gets or Sets IdentificationType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCOUNT_NUMBERBAR_CODEISO_TRACK2PANPHONE_NUMBER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IdentificationTypefromValue(String value)StringgetValue()StringtoString()static IdentificationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static IdentificationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCOUNT_NUMBER
public static final IdentificationType ACCOUNT_NUMBER
-
BAR_CODE
public static final IdentificationType BAR_CODE
-
ISO_TRACK2
public static final IdentificationType ISO_TRACK2
-
PAN
public static final IdentificationType PAN
-
PHONE_NUMBER
public static final IdentificationType PHONE_NUMBER
-
-
Method Detail
-
values
public static IdentificationType[] 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 (IdentificationType c : IdentificationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IdentificationType 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<IdentificationType>
-
fromValue
public static IdentificationType fromValue(String value)
-
-