Enum Class BzstCesopPaymentMethodEnum
java.lang.Object
java.lang.Enum<BzstCesopPaymentMethodEnum>
software.xdev.bzst.dip.client.model.message.cesop.BzstCesopPaymentMethodEnum
- All Implemented Interfaces:
Serializable,Comparable<BzstCesopPaymentMethodEnum>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe bank transfer as a means of payment.The credit card as a means of payment.The direct debit as a means of payment.The e-Money as a means of payment.The intermediary as a means of payment.The marketplace as a means of payment.The money remittance as a means of payment.Other mean of payment. -
Method Summary
Modifier and TypeMethodDescriptionvalue()static BzstCesopPaymentMethodEnumReturns the enum constant of this class with the specified name.static BzstCesopPaymentMethodEnum[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CARD_PAYMENT
The credit card as a means of payment. -
BANK_TRANSFER
The bank transfer as a means of payment. -
DIRECT_DEBIT
The direct debit as a means of payment. -
E_MONEY
The e-Money as a means of payment. -
MONEY_REMITTANCE
The money remittance as a means of payment. -
MARKETPLACE
The marketplace as a means of payment. -
INTERMEDIARY
The intermediary as a means of payment. -
OTHER
Other mean of payment. Please specify it in the element PaymentMethodOther.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
value
-