Enum SourceType
- java.lang.Object
-
- java.lang.Enum<SourceType>
-
- com.checkout.handlepaymentsandpayouts.payments.common.source.SourceType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SourceType>
public enum SourceType extends java.lang.Enum<SourceType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SourceTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SourceType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CARD
@SerializedName("card") public static final SourceType CARD
-
AFTERPAY
@SerializedName("afterpay") public static final SourceType AFTERPAY
-
ALIPAY_CN
@SerializedName("alipay_cn") public static final SourceType ALIPAY_CN
-
ALIPAY_HK
@SerializedName("alipay_hk") public static final SourceType ALIPAY_HK
-
ALIPAY_PLUS
@SerializedName("alipay_plus") public static final SourceType ALIPAY_PLUS
-
ALMA
@SerializedName("alma") public static final SourceType ALMA
-
BANCONTACT
@SerializedName("bancontact") public static final SourceType BANCONTACT
-
BENEFIT
@SerializedName("benefit") public static final SourceType BENEFIT
-
CVCONNECT
@SerializedName("cvconnect") public static final SourceType CVCONNECT
-
DANA
@SerializedName("dana") public static final SourceType DANA
-
EPS
@SerializedName("eps") public static final SourceType EPS
-
FAWRY
@SerializedName("fawry") public static final SourceType FAWRY
-
GCASH
@SerializedName("gcash") public static final SourceType GCASH
-
IDEAL
@SerializedName("ideal") public static final SourceType IDEAL
-
ILLICADO
@SerializedName("illicado") public static final SourceType ILLICADO
-
KAKAOPAY
@SerializedName("kakaopay") public static final SourceType KAKAOPAY
-
KLARNA
@SerializedName("klarna") public static final SourceType KLARNA
-
KNET
@SerializedName("knet") public static final SourceType KNET
-
MBWAY
@SerializedName("mbway") public static final SourceType MBWAY
-
MOBILEPAY
@SerializedName("mobilepay") public static final SourceType MOBILEPAY
-
MULTIBANCO
@SerializedName("multibanco") public static final SourceType MULTIBANCO
-
OCTOPUS
@SerializedName("octopus") public static final SourceType OCTOPUS
-
PAYNOW
@SerializedName("paynow") public static final SourceType PAYNOW
-
PAYPAL
@SerializedName("paypal") public static final SourceType PAYPAL
-
POSTFINANCE
@SerializedName("postfinance") public static final SourceType POSTFINANCE
-
P24
@SerializedName("p24") public static final SourceType P24
-
QPAY
@SerializedName("qpay") public static final SourceType QPAY
-
SEPA
@SerializedName("sepa") public static final SourceType SEPA
-
SEQURA
@SerializedName("sequra") public static final SourceType SEQURA
-
STCPAY
@SerializedName("stcpay") public static final SourceType STCPAY
-
TAMARA
@SerializedName("tamara") public static final SourceType TAMARA
-
TNG
@SerializedName("tng") public static final SourceType TNG
-
TRUEMONEY
@SerializedName("truemoney") public static final SourceType TRUEMONEY
-
TWINT
@SerializedName("twint") public static final SourceType TWINT
-
VIPPS
@SerializedName("vipps") public static final SourceType VIPPS
-
WECHATPAY
@SerializedName("wechatpay") public static final SourceType WECHATPAY
-
CURRENCY_ACCOUNT
@SerializedName("currency_account") public static final SourceType CURRENCY_ACCOUNT
-
PAYMENT_GET_RESPONSE_GIROPAY_SOURCE
@SerializedName("PaymentGetResponseGiropaySource") public static final SourceType PAYMENT_GET_RESPONSE_GIROPAY_SOURCE
-
PAYMENT_GET_RESPONSE_KLARNA_SOURCE
@SerializedName("PaymentGetResponseKlarnaSource") public static final SourceType PAYMENT_GET_RESPONSE_KLARNA_SOURCE
-
PAYMENT_GET_RESPONSE_SEPAV4_SOURCE
@SerializedName("PaymentGetResponseSEPAV4Source") public static final SourceType PAYMENT_GET_RESPONSE_SEPAV4_SOURCE
-
PAYMENT_RESPONSE_SOURCE
@SerializedName("PaymentResponseSource") public static final SourceType PAYMENT_RESPONSE_SOURCE
-
-
Method Detail
-
values
public static SourceType[] 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 (SourceType c : SourceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SourceType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-