Package de.adorsys.multibanking.metrics
Enum Bankgruppe
- java.lang.Object
-
- java.lang.Enum<Bankgruppe>
-
- de.adorsys.multibanking.metrics.Bankgruppe
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Bankgruppe>
public enum Bankgruppe extends java.lang.Enum<Bankgruppe>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BUNDESBANKCOMMERZBANKCOMMERZBANK_VORMALS_DRESDNERDEUTSCHE_BANKRAIFFEISENBANKSONSTIGE_UND_CONSORSBANKSONSTIGE_UND_POSTBANKSONSTIGE_UND_UNICREDITSPARKASSEVOLKSBANK
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BankgruppevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Bankgruppe[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BUNDESBANK
public static final Bankgruppe BUNDESBANK
-
SONSTIGE_UND_POSTBANK
public static final Bankgruppe SONSTIGE_UND_POSTBANK
-
SONSTIGE_UND_UNICREDIT
public static final Bankgruppe SONSTIGE_UND_UNICREDIT
-
SONSTIGE_UND_CONSORSBANK
public static final Bankgruppe SONSTIGE_UND_CONSORSBANK
-
COMMERZBANK
public static final Bankgruppe COMMERZBANK
-
SPARKASSE
public static final Bankgruppe SPARKASSE
-
RAIFFEISENBANK
public static final Bankgruppe RAIFFEISENBANK
-
DEUTSCHE_BANK
public static final Bankgruppe DEUTSCHE_BANK
-
COMMERZBANK_VORMALS_DRESDNER
public static final Bankgruppe COMMERZBANK_VORMALS_DRESDNER
-
VOLKSBANK
public static final Bankgruppe VOLKSBANK
-
-
Method Detail
-
values
public static Bankgruppe[] 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 (Bankgruppe c : Bankgruppe.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Bankgruppe 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
-
-