Enum Method

  • All Implemented Interfaces:
    Serializable, Comparable<Method>

    public enum Method
    extends Enum<Method>
    Pseudonymisierungsverfahren.
    Das Pseudonymisierungsverfahren wird benutzt um je nach Verfahren ein Pseudonym zu erzeugen.
    Sprich das Pseudonym eines bestimmten Klartextes wird vor der Verschlüsselung mit der String-Repräsentation der Method verknüpft
    um ein Verfahrensbezogenes Pseudonym zu erzeugen.

    Abkürzungen siehe https://iqtig.org/abkuerzungen/
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      CHE
      Cholezystektomie
      DEK
      Dekubitusprophylaxe
      DK
      Darmkrebs
      GYN
      Gynäkologische Operationen
      HCH
      HCH Koronarchirurgie und Eingriffe an Herzklappen
      HGV
      Hüftgelenkversorgung
      HSMDEF
      Versorgung mit Herzschrittmachern und implantierbaren Defibrillatoren
      HTXM
      Herztransplantationen und Implantation von Herzunterstützungssystemen/Kunstherzen
      KAROT
      Karotis-Rekonstruktion
      KEP
      Knieendoprothesen
      LLTX
      Lebertransplantation und Leberlebendspende
      LUTX
      Lungentransplantationen und Herz-Lungen-Transplantationen
      MAMMA
      Mammachirurgie
      NET
      Nierenersatztherapie bei chronischem Nierenversagen einschließlich Pankreastransplantationen
      NLS
      Nierenlebendspenden
      NWI
      NWI Vermeidung nosokomialer Infektionen: Postoperative Wundinfektionen (fallbezogen)
      PCI
      Perkutane Koronarintervention und Koronarangiographie
      PERI
      Perinatalmedizin
      PNEU
      Ambulant erworbene Pneumonie
      UNDEFINED  
      ZK
      Zervixkarzinom
    • Enum Constant Detail

      • ZK

        public static final Method ZK
        Zervixkarzinom
      • DK

        public static final Method DK
        Darmkrebs
      • CHE

        public static final Method CHE
        Cholezystektomie
      • PCI

        public static final Method PCI
        Perkutane Koronarintervention und Koronarangiographie
      • NWI

        public static final Method NWI
        NWI Vermeidung nosokomialer Infektionen: Postoperative Wundinfektionen (fallbezogen)
      • HCH

        public static final Method HCH
        HCH Koronarchirurgie und Eingriffe an Herzklappen
      • LLTX

        public static final Method LLTX
        Lebertransplantation und Leberlebendspende
      • LUTX

        public static final Method LUTX
        Lungentransplantationen und Herz-Lungen-Transplantationen
      • HTXM

        public static final Method HTXM
        Herztransplantationen und Implantation von Herzunterstützungssystemen/Kunstherzen
      • NLS

        public static final Method NLS
        Nierenlebendspenden
      • NET

        public static final Method NET
        Nierenersatztherapie bei chronischem Nierenversagen einschließlich Pankreastransplantationen
      • HGV

        public static final Method HGV
        Hüftgelenkversorgung
      • KEP

        public static final Method KEP
        Knieendoprothesen
      • HSMDEF

        public static final Method HSMDEF
        Versorgung mit Herzschrittmachern und implantierbaren Defibrillatoren
      • PNEU

        public static final Method PNEU
        Ambulant erworbene Pneumonie
      • DEK

        public static final Method DEK
        Dekubitusprophylaxe
      • KAROT

        public static final Method KAROT
        Karotis-Rekonstruktion
      • GYN

        public static final Method GYN
        Gynäkologische Operationen
      • PERI

        public static final Method PERI
        Perinatalmedizin
      • MAMMA

        public static final Method MAMMA
        Mammachirurgie
      • UNDEFINED

        public static final Method UNDEFINED
    • Method Detail

      • values

        public static Method[] 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 (Method c : Method.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Method 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 name
        NullPointerException - if the argument is null