Package com.adyen.model.tapi
Enum EventToNotify
- java.lang.Object
-
- java.lang.Enum<EventToNotify>
-
- com.adyen.model.tapi.EventToNotify
-
- All Implemented Interfaces:
Serializable,Comparable<EventToNotify>
public enum EventToNotify extends Enum<EventToNotify>
Event the POI notifies to the Sale System. Possible values: * **Abort** * **BeginMaintenance** * **CardInserted** * **CardRemoved** * **Completed** * **CustomerLanguage** * **EndMaintenance** * **Initialised** * **KeyPressed** * **OutOfOrder** * **Reject** * **SaleAdmin** * **SaleWakeUp** * **ScanBarcodeResult** * **SecurityAlarm** * **Shutdown** * **StopAssistance** * **UseAnotherCardForPreauth**
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EventToNotifyfromValue(String value)StringgetValue()StringtoString()static EventToNotifyvalueOf(String name)Returns the enum constant of this type with the specified name.static EventToNotify[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ABORT
public static final EventToNotify ABORT
-
BEGIN_MAINTENANCE
public static final EventToNotify BEGIN_MAINTENANCE
-
CARD_INSERTED
public static final EventToNotify CARD_INSERTED
-
CARD_REMOVED
public static final EventToNotify CARD_REMOVED
-
COMPLETED
public static final EventToNotify COMPLETED
-
CUSTOMER_LANGUAGE
public static final EventToNotify CUSTOMER_LANGUAGE
-
END_MAINTENANCE
public static final EventToNotify END_MAINTENANCE
-
INITIALISED
public static final EventToNotify INITIALISED
-
KEY_PRESSED
public static final EventToNotify KEY_PRESSED
-
OUT_OF_ORDER
public static final EventToNotify OUT_OF_ORDER
-
REJECT
public static final EventToNotify REJECT
-
SALE_ADMIN
public static final EventToNotify SALE_ADMIN
-
SALE_WAKE_UP
public static final EventToNotify SALE_WAKE_UP
-
SCAN_BARCODE_RESULT
public static final EventToNotify SCAN_BARCODE_RESULT
-
SECURITY_ALARM
public static final EventToNotify SECURITY_ALARM
-
SHUTDOWN
public static final EventToNotify SHUTDOWN
-
STOP_ASSISTANCE
public static final EventToNotify STOP_ASSISTANCE
-
USE_ANOTHER_CARD_FOR_PREAUTH
public static final EventToNotify USE_ANOTHER_CARD_FOR_PREAUTH
-
-
Method Detail
-
values
public static EventToNotify[] 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 (EventToNotify c : EventToNotify.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EventToNotify 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<EventToNotify>
-
fromValue
public static EventToNotify fromValue(String value)
-
-