Enum MedicalCertificatePatientInfoFieldType
- java.lang.Object
-
- java.lang.Enum<MedicalCertificatePatientInfoFieldType>
-
- io.scanbot.sdk.medicalcertificate.MedicalCertificatePatientInfoFieldType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MedicalCertificatePatientInfoFieldType>
public enum MedicalCertificatePatientInfoFieldType extends java.lang.Enum<MedicalCertificatePatientInfoFieldType>
Type of a field in the patient info box.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDRESS_STRING1First line of address.ADDRESS_STRING2Second line of address.DIAGNOSEDiagnose.DOCTOR_NUMBERNumber of the doctor (Arzt-Nr.).FIRST_NAMEFirst name (Vorname des Versicherten).HEALTH_INSURANCE_NUMBERNumber of the health insurance provider (Kostenträgerkennung).INSURANCE_PROVIDERInsurance provider (Krankenkasse bzw.INSURED_PERSON_NUMBERPersonal number of the insured person (Versicherten-Nr.).LAST_NAMELast name (Name des Versicherten).PLACE_OF_OPERATION_NUMBERNumber of the place of operation (Betriebsstätten-Nr.).STATUSStatus.UNDEFINEDUndefined.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MedicalCertificatePatientInfoFieldTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MedicalCertificatePatientInfoFieldType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INSURANCE_PROVIDER
public static final MedicalCertificatePatientInfoFieldType INSURANCE_PROVIDER
Insurance provider (Krankenkasse bzw. Kostenträger).
-
FIRST_NAME
public static final MedicalCertificatePatientInfoFieldType FIRST_NAME
First name (Vorname des Versicherten).
-
LAST_NAME
public static final MedicalCertificatePatientInfoFieldType LAST_NAME
Last name (Name des Versicherten).
-
ADDRESS_STRING1
public static final MedicalCertificatePatientInfoFieldType ADDRESS_STRING1
First line of address.
-
ADDRESS_STRING2
public static final MedicalCertificatePatientInfoFieldType ADDRESS_STRING2
Second line of address.
-
DIAGNOSE
public static final MedicalCertificatePatientInfoFieldType DIAGNOSE
Diagnose.
-
HEALTH_INSURANCE_NUMBER
public static final MedicalCertificatePatientInfoFieldType HEALTH_INSURANCE_NUMBER
Number of the health insurance provider (Kostenträgerkennung).
-
INSURED_PERSON_NUMBER
public static final MedicalCertificatePatientInfoFieldType INSURED_PERSON_NUMBER
Personal number of the insured person (Versicherten-Nr.).
-
STATUS
public static final MedicalCertificatePatientInfoFieldType STATUS
Status.
-
PLACE_OF_OPERATION_NUMBER
public static final MedicalCertificatePatientInfoFieldType PLACE_OF_OPERATION_NUMBER
Number of the place of operation (Betriebsstätten-Nr.).
-
DOCTOR_NUMBER
public static final MedicalCertificatePatientInfoFieldType DOCTOR_NUMBER
Number of the doctor (Arzt-Nr.).
-
UNDEFINED
public static final MedicalCertificatePatientInfoFieldType UNDEFINED
Undefined.
-
-
Method Detail
-
values
public static MedicalCertificatePatientInfoFieldType[] 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 (MedicalCertificatePatientInfoFieldType c : MedicalCertificatePatientInfoFieldType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MedicalCertificatePatientInfoFieldType 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 namejava.lang.NullPointerException- if the argument is null
-
-