Enum GenericNotification.EventTypeEnum
- java.lang.Object
-
- java.lang.Enum<GenericNotification.EventTypeEnum>
-
- com.adyen.model.marketpay.notification.GenericNotification.EventTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<GenericNotification.EventTypeEnum>
- Enclosing class:
- GenericNotification
public static enum GenericNotification.EventTypeEnum extends Enum<GenericNotification.EventTypeEnum>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static GenericNotification.EventTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static GenericNotification.EventTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCOUNT_CREATED
@SerializedName("ACCOUNT_CREATED") public static final GenericNotification.EventTypeEnum ACCOUNT_CREATED
-
ACCOUNT_CLOSED
@SerializedName("ACCOUNT_CLOSED") public static final GenericNotification.EventTypeEnum ACCOUNT_CLOSED
-
ACCOUNT_UPDATED
@SerializedName("ACCOUNT_UPDATED") public static final GenericNotification.EventTypeEnum ACCOUNT_UPDATED
-
ACCOUNT_FUNDS_BELOW_THRESHOLD
@SerializedName("ACCOUNT_FUNDS_BELOW_THRESHOLD") public static final GenericNotification.EventTypeEnum ACCOUNT_FUNDS_BELOW_THRESHOLD
-
ACCOUNT_HOLDER_CREATED
@SerializedName("ACCOUNT_HOLDER_CREATED") public static final GenericNotification.EventTypeEnum ACCOUNT_HOLDER_CREATED
-
ACCOUNT_HOLDER_PAYOUT
@SerializedName("ACCOUNT_HOLDER_PAYOUT") public static final GenericNotification.EventTypeEnum ACCOUNT_HOLDER_PAYOUT
-
ACCOUNT_HOLDER_STATUS_CHANGE
@SerializedName("ACCOUNT_HOLDER_STATUS_CHANGE") public static final GenericNotification.EventTypeEnum ACCOUNT_HOLDER_STATUS_CHANGE
-
ACCOUNT_HOLDER_UPDATED
@SerializedName("ACCOUNT_HOLDER_UPDATED") public static final GenericNotification.EventTypeEnum ACCOUNT_HOLDER_UPDATED
-
ACCOUNT_HOLDER_VERIFICATION
@SerializedName("ACCOUNT_HOLDER_VERIFICATION") public static final GenericNotification.EventTypeEnum ACCOUNT_HOLDER_VERIFICATION
-
ACCOUNT_HOLDER_STORE_STATUS_CHANGE
@SerializedName("ACCOUNT_HOLDER_STORE_STATUS_CHANGE") public static final GenericNotification.EventTypeEnum ACCOUNT_HOLDER_STORE_STATUS_CHANGE
-
ACCOUNT_HOLDER_UPCOMING_DEADLINE
@SerializedName("ACCOUNT_HOLDER_UPCOMING_DEADLINE") public static final GenericNotification.EventTypeEnum ACCOUNT_HOLDER_UPCOMING_DEADLINE
-
BENEFICIARY_SETUP
@SerializedName("BENEFICIARY_SETUP") public static final GenericNotification.EventTypeEnum BENEFICIARY_SETUP
-
COMPENSATE_NEGATIVE_BALANCE
@SerializedName("COMPENSATE_NEGATIVE_BALANCE") public static final GenericNotification.EventTypeEnum COMPENSATE_NEGATIVE_BALANCE
-
PAYMENT_FAILURE
@SerializedName("PAYMENT_FAILURE") public static final GenericNotification.EventTypeEnum PAYMENT_FAILURE
-
REPORT_AVAILABLE
@SerializedName("REPORT_AVAILABLE") public static final GenericNotification.EventTypeEnum REPORT_AVAILABLE
-
SCHEDULED_REFUNDS
@SerializedName("SCHEDULED_REFUNDS") public static final GenericNotification.EventTypeEnum SCHEDULED_REFUNDS
-
TRANSFER_FUNDS
@SerializedName("TRANSFER_FUNDS") public static final GenericNotification.EventTypeEnum TRANSFER_FUNDS
-
DIRECT_DEBIT_INITIATED
@SerializedName("DIRECT_DEBIT_INITIATED") public static final GenericNotification.EventTypeEnum DIRECT_DEBIT_INITIATED
-
PAYOUT_CONFIRMED
@SerializedName("PAYOUT_CONFIRMED") public static final GenericNotification.EventTypeEnum PAYOUT_CONFIRMED
-
REFUND_FUNDS_TRANSFER
@SerializedName("REFUND_FUNDS_TRANSFER") public static final GenericNotification.EventTypeEnum REFUND_FUNDS_TRANSFER
-
-
Method Detail
-
values
public static GenericNotification.EventTypeEnum[] 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 (GenericNotification.EventTypeEnum c : GenericNotification.EventTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GenericNotification.EventTypeEnum 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<GenericNotification.EventTypeEnum>
-
-