Enum Bankgruppe

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Bankgruppe>

    public enum Bankgruppe
    extends java.lang.Enum<Bankgruppe>
    • 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 name
        java.lang.NullPointerException - if the argument is null