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)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
@SerializedName("Synchro") public static final ServiceProfilesType SYNCHROCardAcquisition and EnableService could be requested by the Sale System to the POI System.
-
BATCH
@SerializedName("Batch") public static final ServiceProfilesType 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, and
-
ONE_TIME_RES
@SerializedName("OneTimeRes") public static final ServiceProfilesType ONE_TIME_RESOne Time Reservation service could be requested by the Sale System (as petrol distribution)
-
RESERVATION
@SerializedName("Reservation") public static final ServiceProfilesType RESERVATIONThe Reservation services could be requested by the Sale System
-
LOYALTY
@SerializedName("Loyalty") public static final ServiceProfilesType LOYALTYLoyalty services could be requested by the Sale System
-
STORED_VALUE
@SerializedName("StoredValue") public static final ServiceProfilesType STORED_VALUEStored 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
@SerializedName("CardReader") public static final ServiceProfilesType CARD_READERThe Sale System could request Card Reader services.
-
SOUND
@SerializedName("Sound") public static final ServiceProfilesType SOUNDTo produce various forms of sounds to a customer or an operator interface.
-
COMMUNICATION
@SerializedName("Communication") public static final ServiceProfilesType COMMUNICATIONThe 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)
-
-