Package com.adyen.model.checkout
Enum PaymentLinkResponse.RequiredShopperFieldsEnum
- java.lang.Object
-
- java.lang.Enum<PaymentLinkResponse.RequiredShopperFieldsEnum>
-
- com.adyen.model.checkout.PaymentLinkResponse.RequiredShopperFieldsEnum
-
- All Implemented Interfaces:
Serializable,Comparable<PaymentLinkResponse.RequiredShopperFieldsEnum>
- Enclosing class:
- PaymentLinkResponse
public static enum PaymentLinkResponse.RequiredShopperFieldsEnum extends Enum<PaymentLinkResponse.RequiredShopperFieldsEnum>
Gets or Sets requiredShopperFields
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BILLINGADDRESSDELIVERYADDRESSSHOPPEREMAILSHOPPERNAMETELEPHONENUMBER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PaymentLinkResponse.RequiredShopperFieldsEnumfromValue(String value)StringgetValue()StringtoString()static PaymentLinkResponse.RequiredShopperFieldsEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static PaymentLinkResponse.RequiredShopperFieldsEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BILLINGADDRESS
public static final PaymentLinkResponse.RequiredShopperFieldsEnum BILLINGADDRESS
-
DELIVERYADDRESS
public static final PaymentLinkResponse.RequiredShopperFieldsEnum DELIVERYADDRESS
-
SHOPPEREMAIL
public static final PaymentLinkResponse.RequiredShopperFieldsEnum SHOPPEREMAIL
-
SHOPPERNAME
public static final PaymentLinkResponse.RequiredShopperFieldsEnum SHOPPERNAME
-
TELEPHONENUMBER
public static final PaymentLinkResponse.RequiredShopperFieldsEnum TELEPHONENUMBER
-
-
Method Detail
-
values
public static PaymentLinkResponse.RequiredShopperFieldsEnum[] 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 (PaymentLinkResponse.RequiredShopperFieldsEnum c : PaymentLinkResponse.RequiredShopperFieldsEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PaymentLinkResponse.RequiredShopperFieldsEnum 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<PaymentLinkResponse.RequiredShopperFieldsEnum>
-
fromValue
public static PaymentLinkResponse.RequiredShopperFieldsEnum fromValue(String value)
-
-