Enum MedicalCertificatePatientInfoFieldType
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum MedicalCertificatePatientInfoFieldType extends Enum<MedicalCertificatePatientInfoFieldType>
Type of a field in the patient info box.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
MedicalCertificatePatientInfoFieldType.Companion
-
Enum Constant Summary
Enum Constants Enum Constant Description INSURANCE_PROVIDER
Insurance provider (Krankenkasse bzw. Kostenträger).
FIRST_NAME
First name (Vorname des Versicherten).
LAST_NAME
Last name (Name des Versicherten).
ADDRESS_STRING1
First line of address.
ADDRESS_STRING2
Second line of address.
DIAGNOSE
Diagnose.
HEALTH_INSURANCE_NUMBER
Number of the health insurance provider (Kostenträgerkennung).
INSURED_PERSON_NUMBER
Personal number of the insured person (Versicherten-Nr.).
STATUS
Status.
PLACE_OF_OPERATION_NUMBER
Number of the place of operation (Betriebsstätten-Nr.).
DOCTOR_NUMBER
Number of the doctor (Arzt-Nr.).
UNDEFINED
Undefined.
-
Method Summary
Modifier and Type Method Description final String
toJson()
final MedicalCertificatePatientInfoFieldType
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<MedicalCertificatePatientInfoFieldType>
values()
Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final MedicalCertificatePatientInfoFieldType valueOf(String value)
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.)
-
values
final Array<MedicalCertificatePatientInfoFieldType> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
-
-
-