Enum Method
- java.lang.Object
-
- java.lang.Enum<Method>
-
- org.iqtig.pseudonymisierung.enums.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 derString
-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
CholezystektomieDEK
DekubitusprophylaxeDK
DarmkrebsGYN
Gynäkologische OperationenHCH
HCH Koronarchirurgie und Eingriffe an HerzklappenHGV
HüftgelenkversorgungHSMDEF
Versorgung mit Herzschrittmachern und implantierbaren DefibrillatorenHTXM
Herztransplantationen und Implantation von Herzunterstützungssystemen/KunstherzenKAROT
Karotis-RekonstruktionKEP
KnieendoprothesenLLTX
Lebertransplantation und LeberlebendspendeLUTX
Lungentransplantationen und Herz-Lungen-TransplantationenMAMMA
MammachirurgieNET
Nierenersatztherapie bei chronischem Nierenversagen einschließlich PankreastransplantationenNLS
NierenlebendspendenNWI
NWI Vermeidung nosokomialer Infektionen: Postoperative Wundinfektionen (fallbezogen)PCI
Perkutane Koronarintervention und KoronarangiographiePERI
PerinatalmedizinPNEU
Ambulant erworbene PneumonieUNDEFINED
ZK
Zervixkarzinom
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Method
fromString(String methodString)
Liefert den EnumType zu dem entsprechenden String.static Method
valueOf(String name)
Returns the enum constant of this type with the specified name.static Method[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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 nameNullPointerException
- if the argument is null
-
fromString
public static Method fromString(String methodString) throws PseudonymisationException
Liefert den EnumType zu dem entsprechenden String.- Parameters:
methodString
-String
Wert.- Returns:
Method
- Throws:
PseudonymisationException
- im Fehlerfall
-
-