public static enum Event.CustomerNotification.Type extends java.lang.Enum<Event.CustomerNotification.Type>
| Enum Constant and Description |
|---|
MANDATE_CREATED |
PAYMENT_CREATED |
| Modifier and Type | Method and Description |
|---|---|
static Event.CustomerNotification.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Event.CustomerNotification.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="payment_created") public static final Event.CustomerNotification.Type PAYMENT_CREATED
@SerializedName(value="mandate_created") public static final Event.CustomerNotification.Type MANDATE_CREATED
public static Event.CustomerNotification.Type[] values()
for (Event.CustomerNotification.Type c : Event.CustomerNotification.Type.values()) System.out.println(c);
public static Event.CustomerNotification.Type valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null