Enum BankAccountTO.BankAccountTypeTO
- java.lang.Object
-
- java.lang.Enum<BankAccountTO.BankAccountTypeTO>
-
- de.adorsys.multibanking.web.model.BankAccountTO.BankAccountTypeTO
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BankAccountTO.BankAccountTypeTO>
- Enclosing class:
- BankAccountTO
public static enum BankAccountTO.BankAccountTypeTO extends java.lang.Enum<BankAccountTO.BankAccountTypeTO>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BUIILDINGSAVINGCREDITCARDDEPOTFIXEDTERMDEPOSITGIROINSURANCELOANSAVINGSUNKNOWN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BankAccountTO.BankAccountTypeTOvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BankAccountTO.BankAccountTypeTO[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GIRO
public static final BankAccountTO.BankAccountTypeTO GIRO
-
SAVINGS
public static final BankAccountTO.BankAccountTypeTO SAVINGS
-
FIXEDTERMDEPOSIT
public static final BankAccountTO.BankAccountTypeTO FIXEDTERMDEPOSIT
-
DEPOT
public static final BankAccountTO.BankAccountTypeTO DEPOT
-
LOAN
public static final BankAccountTO.BankAccountTypeTO LOAN
-
CREDITCARD
public static final BankAccountTO.BankAccountTypeTO CREDITCARD
-
BUIILDINGSAVING
public static final BankAccountTO.BankAccountTypeTO BUIILDINGSAVING
-
INSURANCE
public static final BankAccountTO.BankAccountTypeTO INSURANCE
-
UNKNOWN
public static final BankAccountTO.BankAccountTypeTO UNKNOWN
-
-
Method Detail
-
values
public static BankAccountTO.BankAccountTypeTO[] 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 (BankAccountTO.BankAccountTypeTO c : BankAccountTO.BankAccountTypeTO.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BankAccountTO.BankAccountTypeTO valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-