Package com.adyen.model.nexo
Enum PredefinedContentHelper.DisplayNotificationEvent
- java.lang.Object
-
- java.lang.Enum<PredefinedContentHelper.DisplayNotificationEvent>
-
- com.adyen.model.nexo.PredefinedContentHelper.DisplayNotificationEvent
-
- All Implemented Interfaces:
Serializable,Comparable<PredefinedContentHelper.DisplayNotificationEvent>
- Enclosing class:
- PredefinedContentHelper
public static enum PredefinedContentHelper.DisplayNotificationEvent extends Enum<PredefinedContentHelper.DisplayNotificationEvent>
Defines the supported events for display notifications within a PredefinedContent reference ID.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PredefinedContentHelper.DisplayNotificationEventvalueOf(String name)Returns the enum constant of this type with the specified name.static PredefinedContentHelper.DisplayNotificationEvent[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TENDER_CREATED
public static final PredefinedContentHelper.DisplayNotificationEvent TENDER_CREATED
-
CARD_INSERTED
public static final PredefinedContentHelper.DisplayNotificationEvent CARD_INSERTED
-
CARD_PRESENTED
public static final PredefinedContentHelper.DisplayNotificationEvent CARD_PRESENTED
-
CARD_SWIPED
public static final PredefinedContentHelper.DisplayNotificationEvent CARD_SWIPED
-
WAIT_FOR_APP_SELECTION
public static final PredefinedContentHelper.DisplayNotificationEvent WAIT_FOR_APP_SELECTION
-
APPLICATION_SELECTED
public static final PredefinedContentHelper.DisplayNotificationEvent APPLICATION_SELECTED
-
ASK_SIGNATURE
public static final PredefinedContentHelper.DisplayNotificationEvent ASK_SIGNATURE
-
CHECK_SIGNATURE
public static final PredefinedContentHelper.DisplayNotificationEvent CHECK_SIGNATURE
-
SIGNATURE_CHECKED
public static final PredefinedContentHelper.DisplayNotificationEvent SIGNATURE_CHECKED
-
WAIT_FOR_PIN
public static final PredefinedContentHelper.DisplayNotificationEvent WAIT_FOR_PIN
-
PIN_ENTERED
public static final PredefinedContentHelper.DisplayNotificationEvent PIN_ENTERED
-
PRINT_RECEIPT
public static final PredefinedContentHelper.DisplayNotificationEvent PRINT_RECEIPT
-
RECEIPT_PRINTED
public static final PredefinedContentHelper.DisplayNotificationEvent RECEIPT_PRINTED
-
CARD_REMOVED
public static final PredefinedContentHelper.DisplayNotificationEvent CARD_REMOVED
-
TENDER_FINAL
public static final PredefinedContentHelper.DisplayNotificationEvent TENDER_FINAL
-
ASK_DCC
public static final PredefinedContentHelper.DisplayNotificationEvent ASK_DCC
-
DCC_ACCEPTED
public static final PredefinedContentHelper.DisplayNotificationEvent DCC_ACCEPTED
-
DCC_REJECTED
public static final PredefinedContentHelper.DisplayNotificationEvent DCC_REJECTED
-
ASK_GRATUITY
public static final PredefinedContentHelper.DisplayNotificationEvent ASK_GRATUITY
-
GRATUITY_ENTERED
public static final PredefinedContentHelper.DisplayNotificationEvent GRATUITY_ENTERED
-
BALANCE_QUERY_STARTED
public static final PredefinedContentHelper.DisplayNotificationEvent BALANCE_QUERY_STARTED
-
BALANCE_QUERY_COMPLETED
public static final PredefinedContentHelper.DisplayNotificationEvent BALANCE_QUERY_COMPLETED
-
LOAD_STARTED
public static final PredefinedContentHelper.DisplayNotificationEvent LOAD_STARTED
-
LOAD_COMPLETED
public static final PredefinedContentHelper.DisplayNotificationEvent LOAD_COMPLETED
-
PROVIDE_CARD_DETAILS
public static final PredefinedContentHelper.DisplayNotificationEvent PROVIDE_CARD_DETAILS
-
CARD_DETAILS_PROVIDED
public static final PredefinedContentHelper.DisplayNotificationEvent CARD_DETAILS_PROVIDED
-
-
Method Detail
-
values
public static PredefinedContentHelper.DisplayNotificationEvent[] 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 (PredefinedContentHelper.DisplayNotificationEvent c : PredefinedContentHelper.DisplayNotificationEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PredefinedContentHelper.DisplayNotificationEvent 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
-
-