Package com.adyen.model.nexo
Enum ServicesEnabledType
- java.lang.Object
-
- java.lang.Enum<ServicesEnabledType>
-
- com.adyen.model.nexo.ServicesEnabledType
-
- All Implemented Interfaces:
Serializable,Comparable<ServicesEnabledType>
public enum ServicesEnabledType extends Enum<ServicesEnabledType>
Java class for ServicesEnabledType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ServicesEnabledType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="CardAcquisition"/> <enumeration value="Payment"/> <enumeration value="Loyalty"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CARD_ACQUISITIONEnable the POI to process a card acquisition before the request of the Sale System (e.g.LOYALTYEnable the POI to start a loyalty transaction before the request of the Sale System (e.g.PAYMENTEnable the POI to start a payment transaction before the request of the Sale System (e.g.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ServicesEnabledTypefromValue(String v)From value services enabled type.Stringvalue()Value string.static ServicesEnabledTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ServicesEnabledType[]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 ServicesEnabledType CARD_ACQUISITION
Enable the POI to process a card acquisition before the request of the Sale System (e.g. the same processing than the CardAcquisition command, but no more)
-
PAYMENT
public static final ServicesEnabledType PAYMENT
Enable the POI to start a payment transaction before the request of the Sale System (e.g. the same processing than the Payment command)
-
LOYALTY
public static final ServicesEnabledType LOYALTY
Enable the POI to start a loyalty transaction before the request of the Sale System (e.g. the same processing than the Loyalty command)
-
-
Method Detail
-
values
public static ServicesEnabledType[] 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 (ServicesEnabledType c : ServicesEnabledType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServicesEnabledType 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
-
value
public String value()
Value string.- Returns:
- the string
-
fromValue
public static ServicesEnabledType fromValue(String v)
From value services enabled type.- Parameters:
v- the v- Returns:
- the services enabled type
-
-