Enum PaymentProduct
- java.lang.Object
-
- java.lang.Enum<PaymentProduct>
-
- de.adorsys.xs2a.adapter.api.model.PaymentProduct
-
- All Implemented Interfaces:
Serializable,Comparable<PaymentProduct>
@Generated("xs2a-adapter-codegen") public enum PaymentProduct extends Enum<PaymentProduct>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PaymentProductfromValue(String value)StringtoString()static PaymentProductvalueOf(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.
-
-
-
Enum Constant Detail
-
SEPA_CREDIT_TRANSFERS
public static final PaymentProduct SEPA_CREDIT_TRANSFERS
-
INSTANT_SEPA_CREDIT_TRANSFERS
public static final PaymentProduct INSTANT_SEPA_CREDIT_TRANSFERS
-
TARGET_2_PAYMENTS
public static final PaymentProduct TARGET_2_PAYMENTS
-
CROSS_BORDER_CREDIT_TRANSFERS
public static final PaymentProduct CROSS_BORDER_CREDIT_TRANSFERS
-
PAIN_001_SEPA_CREDIT_TRANSFERS
public static final PaymentProduct PAIN_001_SEPA_CREDIT_TRANSFERS
-
PAIN_001_INSTANT_SEPA_CREDIT_TRANSFERS
public static final PaymentProduct PAIN_001_INSTANT_SEPA_CREDIT_TRANSFERS
-
PAIN_001_TARGET_2_PAYMENTS
public static final PaymentProduct PAIN_001_TARGET_2_PAYMENTS
-
PAIN_001_CROSS_BORDER_CREDIT_TRANSFERS
public static final PaymentProduct PAIN_001_CROSS_BORDER_CREDIT_TRANSFERS
-
-
Method Detail
-
values
public static PaymentProduct[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PaymentProduct c : PaymentProduct.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PaymentProduct valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
fromValue
public static PaymentProduct fromValue(String value)
-
toString
public String toString()
- Overrides:
toStringin classEnum<PaymentProduct>
-
-