Package io.moov.sdk.models.components
Enum WalletTransactionType
- java.lang.Object
-
- java.lang.Enum<WalletTransactionType>
-
- io.moov.sdk.models.components.WalletTransactionType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<WalletTransactionType>
public enum WalletTransactionType extends java.lang.Enum<WalletTransactionType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.Optional<WalletTransactionType>fromValue(java.lang.String value)java.lang.Stringvalue()static WalletTransactionTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WalletTransactionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCOUNT_FUNDING
public static final WalletTransactionType ACCOUNT_FUNDING
-
ACH_REVERSAL
public static final WalletTransactionType ACH_REVERSAL
-
AUTO_SWEEP
public static final WalletTransactionType AUTO_SWEEP
-
CARD_PAYMENT
public static final WalletTransactionType CARD_PAYMENT
-
CARD_DECLINE
public static final WalletTransactionType CARD_DECLINE
-
CARD_REVERSAL
public static final WalletTransactionType CARD_REVERSAL
-
CASH_OUT
public static final WalletTransactionType CASH_OUT
-
DISPUTE
public static final WalletTransactionType DISPUTE
-
DISPUTE_REVERSAL
public static final WalletTransactionType DISPUTE_REVERSAL
-
FACILITATOR_FEE
public static final WalletTransactionType FACILITATOR_FEE
-
ISSUING_REFUND
public static final WalletTransactionType ISSUING_REFUND
-
ISSUING_TRANSACTION
public static final WalletTransactionType ISSUING_TRANSACTION
-
ISSUING_TRANSACTION_ADJUSTMENT
public static final WalletTransactionType ISSUING_TRANSACTION_ADJUSTMENT
-
ISSUING_AUTH_HOLD
public static final WalletTransactionType ISSUING_AUTH_HOLD
-
ISSUING_AUTH_RELEASE
public static final WalletTransactionType ISSUING_AUTH_RELEASE
-
ISSUING_DECLINE
public static final WalletTransactionType ISSUING_DECLINE
-
MOOV_FEE
public static final WalletTransactionType MOOV_FEE
-
PAYMENT
public static final WalletTransactionType PAYMENT
-
PAYOUT
public static final WalletTransactionType PAYOUT
-
REFUND
public static final WalletTransactionType REFUND
-
REFUND_FAILURE
public static final WalletTransactionType REFUND_FAILURE
-
RTP_FAILURE
public static final WalletTransactionType RTP_FAILURE
-
TOP_UP
public static final WalletTransactionType TOP_UP
-
WALLET_TRANSFER
public static final WalletTransactionType WALLET_TRANSFER
-
ADJUSTMENT
public static final WalletTransactionType ADJUSTMENT
-
FEE_REVENUE
public static final WalletTransactionType FEE_REVENUE
-
-
Method Detail
-
values
public static WalletTransactionType[] 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 (WalletTransactionType c : WalletTransactionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WalletTransactionType 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
-
value
public java.lang.String value()
-
fromValue
public static java.util.Optional<WalletTransactionType> fromValue(java.lang.String value)
-
-