Package com.adyen.model.nexo
Enum ServiceProfilesType
- java.lang.Object
-
- java.lang.Enum<ServiceProfilesType>
-
- com.adyen.model.nexo.ServiceProfilesType
-
- All Implemented Interfaces:
Serializable,Comparable<ServiceProfilesType>
public enum ServiceProfilesType extends Enum<ServiceProfilesType>
Java class for ServiceProfilesType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ServiceProfilesType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="Synchro"/> <enumeration value="Batch"/> <enumeration value="OneTimeRes"/> <enumeration value="Reservation"/> <enumeration value="Loyalty"/> <enumeration value="StoredValue"/> <enumeration value="PIN"/> <enumeration value="CardReader"/> <enumeration value="Sound"/> <enumeration value="Communication"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BATCHWhen the POI is unable to perform transactions without the Sale system, e.g. payment at delivery, the POI provides in a Batch the performed transactions, andCARD_READERThe Sale System could request Card Reader services.COMMUNICATIONThe POI or Sale System could request communication through the Transmit device messages exchange.LOYALTYLoyalty services could be requested by the Sale SystemONE_TIME_RESOne Time Reservation service could be requested by the Sale System (as petrol distribution)PINThe Sale System could request the PIN validation services.RESERVATIONThe Reservation services could be requested by the Sale SystemSOUNDTo produce various forms of sounds to a customer or an operator interface.STORED_VALUEStored Value service could be requested by the Sale SystemSYNCHROCardAcquisition and EnableService could be requested by the Sale System to the POI System.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ServiceProfilesTypefromValue(String v)From value service profiles type.Stringvalue()Value string.static ServiceProfilesTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ServiceProfilesType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SYNCHRO
public static final ServiceProfilesType SYNCHRO
CardAcquisition and EnableService could be requested by the Sale System to the POI System.
-
BATCH
public static final ServiceProfilesType BATCH
When the POI is unable to perform transactions without the Sale system, e.g. payment at delivery, the POI provides in a Batch the performed transactions, and
-
ONE_TIME_RES
public static final ServiceProfilesType ONE_TIME_RES
One Time Reservation service could be requested by the Sale System (as petrol distribution)
-
RESERVATION
public static final ServiceProfilesType RESERVATION
The Reservation services could be requested by the Sale System
-
LOYALTY
public static final ServiceProfilesType LOYALTY
Loyalty services could be requested by the Sale System
-
STORED_VALUE
public static final ServiceProfilesType STORED_VALUE
Stored Value service could be requested by the Sale System
-
PIN
public static final ServiceProfilesType PIN
The Sale System could request the PIN validation services.
-
CARD_READER
public static final ServiceProfilesType CARD_READER
The Sale System could request Card Reader services.
-
SOUND
public static final ServiceProfilesType SOUND
To produce various forms of sounds to a customer or an operator interface.
-
COMMUNICATION
public static final ServiceProfilesType COMMUNICATION
The POI or Sale System could request communication through the Transmit device messages exchange.
-
-
Method Detail
-
values
public static ServiceProfilesType[] 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 (ServiceProfilesType c : ServiceProfilesType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServiceProfilesType 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 ServiceProfilesType fromValue(String v)
From value service profiles type.- Parameters:
v- the v- Returns:
- the service profiles type
-
-