public enum MandatePaymentMethod extends Enum<MandatePaymentMethod>
| Enum Constant and Description |
|---|
CREDITCARD |
DIRECTDEBIT |
| Modifier and Type | Method and Description |
|---|---|
String |
getJsonValue() |
static MandatePaymentMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MandatePaymentMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MandatePaymentMethod DIRECTDEBIT
public static final MandatePaymentMethod CREDITCARD
public static MandatePaymentMethod[] values()
for (MandatePaymentMethod c : MandatePaymentMethod.values()) System.out.println(c);
public static MandatePaymentMethod valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getJsonValue()
Copyright © 2022. All rights reserved.