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