public enum PaymentProduct extends Enum<PaymentProduct>
| Enum Constant and Description |
|---|
CROSS_BORDER |
INSTANT_SEPA |
SEPA |
TARGET2 |
| Modifier and Type | Method and Description |
|---|---|
static PaymentProduct |
fromValue(String text) |
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
public static final PaymentProduct INSTANT_SEPA
public static final PaymentProduct TARGET2
public static final PaymentProduct CROSS_BORDER
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 String toString()
toString in class Enum<PaymentProduct>public static PaymentProduct fromValue(String text)
Copyright © 2020. All rights reserved.