Enum TransferTypeBankModel
- java.lang.Object
-
- java.lang.Enum<TransferTypeBankModel>
-
- app.cybrid.cybrid_api_bank.client.model.TransferTypeBankModel
-
- All Implemented Interfaces:
Serializable,Comparable<TransferTypeBankModel>
public enum TransferTypeBankModel extends Enum<TransferTypeBankModel>
Gets or Sets TransferType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOKCRYPTOCRYPTO_RETURNFUNDINGFUNDING_RETURNINSTANT_FUNDINGINSTANT_FUNDING_RETURNINTER_ACCOUNTLIGHTNINGLOSS_RECOVERY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TransferTypeBankModelfromValue(String value)StringgetValue()StringtoString()static TransferTypeBankModelvalueOf(String name)Returns the enum constant of this type with the specified name.static TransferTypeBankModel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FUNDING
public static final TransferTypeBankModel FUNDING
-
BOOK
public static final TransferTypeBankModel BOOK
-
CRYPTO
public static final TransferTypeBankModel CRYPTO
-
INSTANT_FUNDING
public static final TransferTypeBankModel INSTANT_FUNDING
-
FUNDING_RETURN
public static final TransferTypeBankModel FUNDING_RETURN
-
CRYPTO_RETURN
public static final TransferTypeBankModel CRYPTO_RETURN
-
LOSS_RECOVERY
public static final TransferTypeBankModel LOSS_RECOVERY
-
INTER_ACCOUNT
public static final TransferTypeBankModel INTER_ACCOUNT
-
LIGHTNING
public static final TransferTypeBankModel LIGHTNING
-
INSTANT_FUNDING_RETURN
public static final TransferTypeBankModel INSTANT_FUNDING_RETURN
-
-
Method Detail
-
values
public static TransferTypeBankModel[] 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 (TransferTypeBankModel c : TransferTypeBankModel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TransferTypeBankModel 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<TransferTypeBankModel>
-
fromValue
public static TransferTypeBankModel fromValue(String value)
-
-