Enum TransferBankModel.TransferTypeEnum
- java.lang.Object
-
- java.lang.Enum<TransferBankModel.TransferTypeEnum>
-
- app.cybrid.cybrid_api_bank.client.model.TransferBankModel.TransferTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TransferBankModel.TransferTypeEnum>
- Enclosing class:
- TransferBankModel
public static enum TransferBankModel.TransferTypeEnum extends Enum<TransferBankModel.TransferTypeEnum>
The type of transfer.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOKCRYPTOFUNDINGINSTANT_FUNDINGINTERNAL_BANK_REBALANCEINTERNAL_WALLET_REBALANCESAVINGS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TransferBankModel.TransferTypeEnumfromValue(String value)StringgetValue()StringtoString()static TransferBankModel.TransferTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static TransferBankModel.TransferTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SAVINGS
public static final TransferBankModel.TransferTypeEnum SAVINGS
-
FUNDING
public static final TransferBankModel.TransferTypeEnum FUNDING
-
BOOK
public static final TransferBankModel.TransferTypeEnum BOOK
-
CRYPTO
public static final TransferBankModel.TransferTypeEnum CRYPTO
-
INTERNAL_BANK_REBALANCE
public static final TransferBankModel.TransferTypeEnum INTERNAL_BANK_REBALANCE
-
INTERNAL_WALLET_REBALANCE
public static final TransferBankModel.TransferTypeEnum INTERNAL_WALLET_REBALANCE
-
INSTANT_FUNDING
public static final TransferBankModel.TransferTypeEnum INSTANT_FUNDING
-
-
Method Detail
-
values
public static TransferBankModel.TransferTypeEnum[] 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 (TransferBankModel.TransferTypeEnum c : TransferBankModel.TransferTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TransferBankModel.TransferTypeEnum 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<TransferBankModel.TransferTypeEnum>
-
fromValue
public static TransferBankModel.TransferTypeEnum fromValue(String value)
-
-