Enum BankProfile.PreferredApproachEnum
- java.lang.Object
-
- java.lang.Enum<BankProfile.PreferredApproachEnum>
-
- de.adorsys.opba.adminapi.model.generated.BankProfile.PreferredApproachEnum
-
- All Implemented Interfaces:
Serializable,Comparable<BankProfile.PreferredApproachEnum>
- Enclosing class:
- BankProfile
public static enum BankProfile.PreferredApproachEnum extends Enum<BankProfile.PreferredApproachEnum>
Gets or Sets preferredApproach
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BankProfile.PreferredApproachEnumfromValue(String text)StringtoString()static BankProfile.PreferredApproachEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static BankProfile.PreferredApproachEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REDIRECT
public static final BankProfile.PreferredApproachEnum REDIRECT
-
EMBEDDED
public static final BankProfile.PreferredApproachEnum EMBEDDED
-
-
Method Detail
-
values
public static BankProfile.PreferredApproachEnum[] 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 (BankProfile.PreferredApproachEnum c : BankProfile.PreferredApproachEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BankProfile.PreferredApproachEnum 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<BankProfile.PreferredApproachEnum>
-
fromValue
public static BankProfile.PreferredApproachEnum fromValue(String text)
-
-