Enum PostWorkflowBankModel.LanguageEnum
- java.lang.Object
-
- java.lang.Enum<PostWorkflowBankModel.LanguageEnum>
-
- app.cybrid.cybrid_api_bank.client.model.PostWorkflowBankModel.LanguageEnum
-
- All Implemented Interfaces:
Serializable,Comparable<PostWorkflowBankModel.LanguageEnum>
- Enclosing class:
- PostWorkflowBankModel
public static enum PostWorkflowBankModel.LanguageEnum extends Enum<PostWorkflowBankModel.LanguageEnum>
The language to initialize Plaid link. Required when type is plaid.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PostWorkflowBankModel.LanguageEnumfromValue(String value)StringgetValue()StringtoString()static PostWorkflowBankModel.LanguageEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static PostWorkflowBankModel.LanguageEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EN
public static final PostWorkflowBankModel.LanguageEnum EN
-
FR
public static final PostWorkflowBankModel.LanguageEnum FR
-
ES
public static final PostWorkflowBankModel.LanguageEnum ES
-
NL
public static final PostWorkflowBankModel.LanguageEnum NL
-
DE
public static final PostWorkflowBankModel.LanguageEnum DE
-
-
Method Detail
-
values
public static PostWorkflowBankModel.LanguageEnum[] 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 (PostWorkflowBankModel.LanguageEnum c : PostWorkflowBankModel.LanguageEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PostWorkflowBankModel.LanguageEnum 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<PostWorkflowBankModel.LanguageEnum>
-
fromValue
public static PostWorkflowBankModel.LanguageEnum fromValue(String value)
-
-