Package com.adyen.model.nexo
Enum EventToNotifyType
- java.lang.Object
-
- java.lang.Enum<EventToNotifyType>
-
- com.adyen.model.nexo.EventToNotifyType
-
- All Implemented Interfaces:
Serializable,Comparable<EventToNotifyType>
public enum EventToNotifyType extends Enum<EventToNotifyType>
Java class for EventToNotifyType.The following schema fragment specifies the expected content contained within this class.
<simpleType name="EventToNotifyType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="BeginMaintenance"/> <enumeration value="EndMaintenance"/> <enumeration value="Shutdown"/> <enumeration value="Initialised"/> <enumeration value="OutOfOrder"/> <enumeration value="Completed"/> <enumeration value="Abort"/> <enumeration value="SaleWakeUp"/> <enumeration value="SaleAdmin"/> <enumeration value="CustomerLanguage"/> <enumeration value="KeyPressed"/> <enumeration value="SecurityAlarm"/> <enumeration value="StopAssistance"/> <enumeration value="CardInserted"/> <enumeration value="CardRemoved"/> <enumeration value="Reject"/> <enumeration value="NetworkConnected"/> <enumeration value="NetworkDisconnected"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABORTOne or several device request has been sent by the POI during the processing of a service requested by the Sale System.BEGIN_MAINTENANCEBegin of POI MaintenanceCARD_INSERTEDA card is inserted in the card reader (see Input request and NotifyCardInputFlag)CARD_REMOVEDA card is removed from the card reader.COMPLETEDAn Abort request has been sent to abort a messageType which is already completed.CUSTOMER_LANGUAGEThe customer has selected a different language on the POI.END_MAINTENANCEEnd of POI MaintenanceINITIALISEDThe POI Terminal or the POI System is now ready to workKEY_PRESSEDThe customer has pressed a specific key on the POI.NETWORK_CONNECTEDThe terminal has established a network connection to the POS and is online.NETWORK_DISCONNECTEDThe terminal has lost its network connection to the POS and is offline.OUT_OF_ORDERThe POI Terminal or the POI System cannot workREJECTA messageType request is rejected.SALE_ADMINThe POI has performed, or want to perform an automatic administrative process, e.g. the reports at the end of day.SALE_WAKE_UPA POI terminal requests the payment of the transaction identified by the content of EventDetails in the Event notification.SCAN_BARCODE_RESULTDelivers the result (or timeout failure) of the Barcode scan.SECURITY_ALARMProblem of securitySHUTDOWNThe POI Terminal or the POI System is shutting downSTOP_ASSISTANCEWhen the Customer assistance is stopped, because the Customer has completed its input.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EventToNotifyTypefromValue(String v)Returns the enum constant matching the given string, ornullif no match is found.Stringvalue()Value string.static EventToNotifyTypevalueOf(String name)Returns the enum constant of this type with the specified name.static EventToNotifyType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BEGIN_MAINTENANCE
@SerializedName("BeginMaintenance") public static final EventToNotifyType BEGIN_MAINTENANCEBegin of POI Maintenance
-
END_MAINTENANCE
@SerializedName("EndMaintenance") public static final EventToNotifyType END_MAINTENANCEEnd of POI Maintenance
-
SHUTDOWN
@SerializedName("Shutdown") public static final EventToNotifyType SHUTDOWNThe POI Terminal or the POI System is shutting down
-
INITIALISED
@SerializedName("Initialised") public static final EventToNotifyType INITIALISEDThe POI Terminal or the POI System is now ready to work
-
OUT_OF_ORDER
@SerializedName("OutOfOrder") public static final EventToNotifyType OUT_OF_ORDERThe POI Terminal or the POI System cannot work
-
COMPLETED
@SerializedName("Completed") public static final EventToNotifyType COMPLETEDAn Abort request has been sent to abort a messageType which is already completed.
-
ABORT
@SerializedName("Abort") public static final EventToNotifyType ABORTOne or several device request has been sent by the POI during the processing of a service requested by the Sale System. The processing is cancelled by the
-
SALE_WAKE_UP
@SerializedName("SaleWakeUp") public static final EventToNotifyType SALE_WAKE_UPA POI terminal requests the payment of the transaction identified by the content of EventDetails in the Event notification.
-
SALE_ADMIN
@SerializedName("SaleAdmin") public static final EventToNotifyType SALE_ADMINThe POI has performed, or want to perform an automatic administrative process, e.g. the reports at the end of day.
-
CUSTOMER_LANGUAGE
@SerializedName("CustomerLanguage") public static final EventToNotifyType CUSTOMER_LANGUAGEThe customer has selected a different language on the POI.
-
KEY_PRESSED
@SerializedName("KeyPressed") public static final EventToNotifyType KEY_PRESSEDThe customer has pressed a specific key on the POI.
-
SECURITY_ALARM
@SerializedName("SecurityAlarm") public static final EventToNotifyType SECURITY_ALARMProblem of security
-
STOP_ASSISTANCE
@SerializedName("StopAssistance") public static final EventToNotifyType STOP_ASSISTANCEWhen the Customer assistance is stopped, because the Customer has completed its input.
-
CARD_INSERTED
@SerializedName("CardInserted") public static final EventToNotifyType CARD_INSERTEDA card is inserted in the card reader (see Input request and NotifyCardInputFlag)
-
CARD_REMOVED
@SerializedName("CardRemoved") public static final EventToNotifyType CARD_REMOVEDA card is removed from the card reader.
-
REJECT
@SerializedName("Reject") public static final EventToNotifyType REJECTA messageType request is rejected. An error explanation and the messageType in error have to be put in the EventDetails data element.
-
NETWORK_CONNECTED
@SerializedName("NetworkConnected") public static final EventToNotifyType NETWORK_CONNECTEDThe terminal has established a network connection to the POS and is online.
-
NETWORK_DISCONNECTED
@SerializedName("NetworkDisconnected") public static final EventToNotifyType NETWORK_DISCONNECTEDThe terminal has lost its network connection to the POS and is offline.
-
SCAN_BARCODE_RESULT
@SerializedName("ScanBarcodeResult") public static final EventToNotifyType SCAN_BARCODE_RESULTDelivers the result (or timeout failure) of the Barcode scan.
-
-
Method Detail
-
values
public static EventToNotifyType[] 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 (EventToNotifyType c : EventToNotifyType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EventToNotifyType 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 EventToNotifyType fromValue(String v)
Returns the enum constant matching the given string, ornullif no match is found.- Parameters:
v- string value- Returns:
- the EventToNotifyType, or
nullif no match is found.
-
-