Package com.adyen.model.transferwebhooks
Enum PlatformPayment.PlatformPaymentTypeEnum
- java.lang.Object
-
- java.lang.Enum<PlatformPayment.PlatformPaymentTypeEnum>
-
- com.adyen.model.transferwebhooks.PlatformPayment.PlatformPaymentTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<PlatformPayment.PlatformPaymentTypeEnum>
- Enclosing class:
- PlatformPayment
public static enum PlatformPayment.PlatformPaymentTypeEnum extends Enum<PlatformPayment.PlatformPaymentTypeEnum>
The type of the related split.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACQUIRINGFEESADYENCOMMISSIONADYENFEESADYENMARKUPBALANCEACCOUNTCOMMISSIONDEFAULTINTERCHANGEPAYMENTFEEREMAINDERSCHEMEFEESURCHARGETIPTOPUPVAT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PlatformPayment.PlatformPaymentTypeEnumfromValue(String value)StringgetValue()StringtoString()static PlatformPayment.PlatformPaymentTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static PlatformPayment.PlatformPaymentTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACQUIRINGFEES
public static final PlatformPayment.PlatformPaymentTypeEnum ACQUIRINGFEES
-
ADYENCOMMISSION
public static final PlatformPayment.PlatformPaymentTypeEnum ADYENCOMMISSION
-
ADYENFEES
public static final PlatformPayment.PlatformPaymentTypeEnum ADYENFEES
-
ADYENMARKUP
public static final PlatformPayment.PlatformPaymentTypeEnum ADYENMARKUP
-
BALANCEACCOUNT
public static final PlatformPayment.PlatformPaymentTypeEnum BALANCEACCOUNT
-
COMMISSION
public static final PlatformPayment.PlatformPaymentTypeEnum COMMISSION
-
DEFAULT
public static final PlatformPayment.PlatformPaymentTypeEnum DEFAULT
-
INTERCHANGE
public static final PlatformPayment.PlatformPaymentTypeEnum INTERCHANGE
-
PAYMENTFEE
public static final PlatformPayment.PlatformPaymentTypeEnum PAYMENTFEE
-
REMAINDER
public static final PlatformPayment.PlatformPaymentTypeEnum REMAINDER
-
SCHEMEFEE
public static final PlatformPayment.PlatformPaymentTypeEnum SCHEMEFEE
-
SURCHARGE
public static final PlatformPayment.PlatformPaymentTypeEnum SURCHARGE
-
TIP
public static final PlatformPayment.PlatformPaymentTypeEnum TIP
-
TOPUP
public static final PlatformPayment.PlatformPaymentTypeEnum TOPUP
-
VAT
public static final PlatformPayment.PlatformPaymentTypeEnum VAT
-
-
Method Detail
-
values
public static PlatformPayment.PlatformPaymentTypeEnum[] 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 (PlatformPayment.PlatformPaymentTypeEnum c : PlatformPayment.PlatformPaymentTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PlatformPayment.PlatformPaymentTypeEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<PlatformPayment.PlatformPaymentTypeEnum>
-
fromValue
public static PlatformPayment.PlatformPaymentTypeEnum fromValue(String value)
-
-