public enum PaymentProductTO extends Enum<PaymentProductTO>
| Enum Constant and Description |
|---|
CROSS_BORDER |
INSTANT_SEPA |
SEPA |
TARGET2 |
| Modifier and Type | Method and Description |
|---|---|
static Optional<PaymentProductTO> |
getByValue(String value) |
String |
getValue() |
static PaymentProductTO |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentProductTO[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentProductTO SEPA
public static final PaymentProductTO INSTANT_SEPA
public static final PaymentProductTO TARGET2
public static final PaymentProductTO CROSS_BORDER
public static PaymentProductTO[] values()
for (PaymentProductTO c : PaymentProductTO.values()) System.out.println(c);
public static PaymentProductTO 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 getValue()
public static Optional<PaymentProductTO> getByValue(String value)
Copyright © 2019. All rights reserved.