Enum Class PaymentMethodTypeType
java.lang.Object
java.lang.Enum<PaymentMethodTypeType>
software.xdev.bzst.dip.client.xmldocument.model.cesop.PaymentMethodTypeType
- All Implemented Interfaces:
Serializable,Comparable<PaymentMethodTypeType>,Constable
Java-Klasse für PaymentMethodType_Type.
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
<simpleType name="PaymentMethodType_Type">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<maxLength value="20"/>
<enumeration value="Card payment"/>
<enumeration value="Bank transfer"/>
<enumeration value="Direct debit"/>
<enumeration value="E-money"/>
<enumeration value="Money Remittance"/>
<enumeration value="Marketplace"/>
<enumeration value="Intermediary"/>
<enumeration value="Other"/>
</restriction>
</simpleType>
-
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 TypeMethodDescriptionstatic PaymentMethodTypeTypevalue()static PaymentMethodTypeTypeReturns the enum constant of this class with the specified name.static PaymentMethodTypeType[]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
-
fromValue
-