Enum PostBankBankModel.FeaturesEnum
- java.lang.Object
-
- java.lang.Enum<PostBankBankModel.FeaturesEnum>
-
- app.cybrid.cybrid_api_bank.client.model.PostBankBankModel.FeaturesEnum
-
- All Implemented Interfaces:
Serializable,Comparable<PostBankBankModel.FeaturesEnum>
- Enclosing class:
- PostBankBankModel
public static enum PostBankBankModel.FeaturesEnum extends Enum<PostBankBankModel.FeaturesEnum>
Gets or Sets features
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ATTESTATION_IDENTITY_RECORDSBACKSTOPPED_FUNDING_SOURCEPLAID_FUNDING_SOURCE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PostBankBankModel.FeaturesEnumfromValue(String value)StringgetValue()StringtoString()static PostBankBankModel.FeaturesEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static PostBankBankModel.FeaturesEnum[]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 PostBankBankModel.FeaturesEnum ATTESTATION_IDENTITY_RECORDS
-
BACKSTOPPED_FUNDING_SOURCE
public static final PostBankBankModel.FeaturesEnum BACKSTOPPED_FUNDING_SOURCE
-
PLAID_FUNDING_SOURCE
public static final PostBankBankModel.FeaturesEnum PLAID_FUNDING_SOURCE
-
-
Method Detail
-
values
public static PostBankBankModel.FeaturesEnum[] 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 (PostBankBankModel.FeaturesEnum c : PostBankBankModel.FeaturesEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PostBankBankModel.FeaturesEnum 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<PostBankBankModel.FeaturesEnum>
-
fromValue
public static PostBankBankModel.FeaturesEnum fromValue(String value)
-
-