Enum BankFeatureBankModel
- java.lang.Object
-
- java.lang.Enum<BankFeatureBankModel>
-
- app.cybrid.cybrid_api_bank.client.model.BankFeatureBankModel
-
- All Implemented Interfaces:
Serializable,Comparable<BankFeatureBankModel>
public enum BankFeatureBankModel extends Enum<BankFeatureBankModel>
Gets or Sets BankFeature
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ATTESTATION_IDENTITY_RECORDSBUSINESS_CUSTOMERSINDIVIDUAL_CUSTOMERSKYC_IDENTITY_VERIFICATIONSRAW_ROUTING_DETAILSROUTABLE_ACCOUNTS_BANKROUTABLE_ACCOUNTS_CUSTOMER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BankFeatureBankModelfromValue(String value)StringgetValue()StringtoString()static BankFeatureBankModelvalueOf(String name)Returns the enum constant of this type with the specified name.static BankFeatureBankModel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ATTESTATION_IDENTITY_RECORDS
public static final BankFeatureBankModel ATTESTATION_IDENTITY_RECORDS
-
KYC_IDENTITY_VERIFICATIONS
public static final BankFeatureBankModel KYC_IDENTITY_VERIFICATIONS
-
RAW_ROUTING_DETAILS
public static final BankFeatureBankModel RAW_ROUTING_DETAILS
-
INDIVIDUAL_CUSTOMERS
public static final BankFeatureBankModel INDIVIDUAL_CUSTOMERS
-
BUSINESS_CUSTOMERS
public static final BankFeatureBankModel BUSINESS_CUSTOMERS
-
ROUTABLE_ACCOUNTS_BANK
public static final BankFeatureBankModel ROUTABLE_ACCOUNTS_BANK
-
ROUTABLE_ACCOUNTS_CUSTOMER
public static final BankFeatureBankModel ROUTABLE_ACCOUNTS_CUSTOMER
-
-
Method Detail
-
values
public static BankFeatureBankModel[] 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 (BankFeatureBankModel c : BankFeatureBankModel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BankFeatureBankModel 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<BankFeatureBankModel>
-
fromValue
public static BankFeatureBankModel fromValue(String value)
-
-