Package com.adyen.model.transferwebhooks
Enum TransferData.PlatformPaymentTypeEnum
- java.lang.Object
-
- java.lang.Enum<TransferData.PlatformPaymentTypeEnum>
-
- com.adyen.model.transferwebhooks.TransferData.PlatformPaymentTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TransferData.PlatformPaymentTypeEnum>
- Enclosing class:
- TransferData
public static enum TransferData.PlatformPaymentTypeEnum extends Enum<TransferData.PlatformPaymentTypeEnum>
The type of the related split.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BALANCEACCOUNTCOMMISSIONDEFAULTPAYMENTFEEVAT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TransferData.PlatformPaymentTypeEnumfromValue(String value)StringgetValue()StringtoString()static TransferData.PlatformPaymentTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static TransferData.PlatformPaymentTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BALANCEACCOUNT
public static final TransferData.PlatformPaymentTypeEnum BALANCEACCOUNT
-
COMMISSION
public static final TransferData.PlatformPaymentTypeEnum COMMISSION
-
DEFAULT
public static final TransferData.PlatformPaymentTypeEnum DEFAULT
-
PAYMENTFEE
public static final TransferData.PlatformPaymentTypeEnum PAYMENTFEE
-
VAT
public static final TransferData.PlatformPaymentTypeEnum VAT
-
-
Method Detail
-
values
public static TransferData.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 (TransferData.PlatformPaymentTypeEnum c : TransferData.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 TransferData.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<TransferData.PlatformPaymentTypeEnum>
-
fromValue
public static TransferData.PlatformPaymentTypeEnum fromValue(String value)
-
-