Package com.adyen.model.checkout
Enum FundRecipient.WalletPurposeEnum
- java.lang.Object
-
- java.lang.Enum<FundRecipient.WalletPurposeEnum>
-
- com.adyen.model.checkout.FundRecipient.WalletPurposeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<FundRecipient.WalletPurposeEnum>
- Enclosing class:
- FundRecipient
public static enum FundRecipient.WalletPurposeEnum extends Enum<FundRecipient.WalletPurposeEnum>
The purpose of a digital wallet transaction.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IDENTIFIEDBOLETOTRANSFERDIFFERENTWALLETTRANSFEROWNWALLETTRANSFERSAMEWALLETUNIDENTIFIEDBOLETO
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FundRecipient.WalletPurposeEnumfromValue(String value)StringgetValue()StringtoString()static FundRecipient.WalletPurposeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static FundRecipient.WalletPurposeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IDENTIFIEDBOLETO
public static final FundRecipient.WalletPurposeEnum IDENTIFIEDBOLETO
-
TRANSFERDIFFERENTWALLET
public static final FundRecipient.WalletPurposeEnum TRANSFERDIFFERENTWALLET
-
TRANSFEROWNWALLET
public static final FundRecipient.WalletPurposeEnum TRANSFEROWNWALLET
-
TRANSFERSAMEWALLET
public static final FundRecipient.WalletPurposeEnum TRANSFERSAMEWALLET
-
UNIDENTIFIEDBOLETO
public static final FundRecipient.WalletPurposeEnum UNIDENTIFIEDBOLETO
-
-
Method Detail
-
values
public static FundRecipient.WalletPurposeEnum[] 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 (FundRecipient.WalletPurposeEnum c : FundRecipient.WalletPurposeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FundRecipient.WalletPurposeEnum 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<FundRecipient.WalletPurposeEnum>
-
fromValue
public static FundRecipient.WalletPurposeEnum fromValue(String value)
-
-