public enum MerchantInitiatedReason extends java.lang.Enum<MerchantInitiatedReason>
| Enum Constant and Description |
|---|
DELAYED_CHARGE |
NO_SHOW |
REAUTHORIZATION |
RESUBMISSION |
| Modifier and Type | Method and Description |
|---|---|
static MerchantInitiatedReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MerchantInitiatedReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="Delayed_charge") public static final MerchantInitiatedReason DELAYED_CHARGE
@SerializedName(value="Resubmission") public static final MerchantInitiatedReason RESUBMISSION
@SerializedName(value="No_show") public static final MerchantInitiatedReason NO_SHOW
@SerializedName(value="Reauthorization") public static final MerchantInitiatedReason REAUTHORIZATION
public static MerchantInitiatedReason[] values()
for (MerchantInitiatedReason c : MerchantInitiatedReason.values()) System.out.println(c);
public static MerchantInitiatedReason 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