public enum PaymentProduct extends Enum<PaymentProduct>
| Modifier and Type | Method and Description |
|---|---|
static PaymentProduct |
fromValue(String value) |
String |
toString() |
static PaymentProduct |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentProduct[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentProduct SEPA_CREDIT_TRANSFERS
public static final PaymentProduct INSTANT_SEPA_CREDIT_TRANSFERS
public static final PaymentProduct TARGET_2_PAYMENTS
public static final PaymentProduct CROSS_BORDER_CREDIT_TRANSFERS
public static final PaymentProduct PAIN_001_SEPA_CREDIT_TRANSFERS
public static final PaymentProduct PAIN_001_INSTANT_SEPA_CREDIT_TRANSFERS
public static final PaymentProduct PAIN_001_TARGET_2_PAYMENTS
public static final PaymentProduct PAIN_001_CROSS_BORDER_CREDIT_TRANSFERS
public static PaymentProduct[] values()
for (PaymentProduct c : PaymentProduct.values()) System.out.println(c);
public static PaymentProduct 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 static PaymentProduct fromValue(String value)
public String toString()
toString in class Enum<PaymentProduct>Copyright © 2020. All rights reserved.