public static enum CustomerNotification.Type extends java.lang.Enum<CustomerNotification.Type>
Enum Constant and Description |
---|
MANDATE_CREATED |
PAYMENT_CREATED |
Modifier and Type | Method and Description |
---|---|
static CustomerNotification.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static 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 CustomerNotification.Type PAYMENT_CREATED
@SerializedName(value="mandate_created") public static final CustomerNotification.Type MANDATE_CREATED
public static CustomerNotification.Type[] values()
for (CustomerNotification.Type c : CustomerNotification.Type.values()) System.out.println(c);
public static 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