public enum Bankgruppe extends Enum<Bankgruppe>
| Enum Constant and Description |
|---|
BUNDESBANK |
COMMERZBANK |
COMMERZBANK_VORMALS_DRESDNER |
DEUTSCHE_BANK |
RAIFFEISENBANK |
SONSTIGE_UND_CONSORSBANK |
SONSTIGE_UND_POSTBANK |
SONSTIGE_UND_UNICREDIT |
SPARKASSE |
VOLKSBANK |
| Modifier and Type | Method and Description |
|---|---|
static Bankgruppe |
valueOf(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.
|
public static final Bankgruppe BUNDESBANK
public static final Bankgruppe SONSTIGE_UND_POSTBANK
public static final Bankgruppe SONSTIGE_UND_UNICREDIT
public static final Bankgruppe SONSTIGE_UND_CONSORSBANK
public static final Bankgruppe COMMERZBANK
public static final Bankgruppe SPARKASSE
public static final Bankgruppe RAIFFEISENBANK
public static final Bankgruppe DEUTSCHE_BANK
public static final Bankgruppe COMMERZBANK_VORMALS_DRESDNER
public static final Bankgruppe VOLKSBANK
public static Bankgruppe[] values()
for (Bankgruppe c : Bankgruppe.values()) System.out.println(c);
public static Bankgruppe valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.