Enum MedicalCertificateCheckBoxType

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ACCIDENT_NO
      (Form 21a) Accident no (Unfall...
      ACCIDENT_YES
      (Form 21a) Accident yes (Unfall...
      ASSIGNED_TO_ACCIDENT_INSURANCE_DOCTOR
      (Form 1) Assigned to accident insurance doctor (dem Durchgangsarzt zugewiesen) checkbox.
      ENTITLEMENT_TO_CONTINUED_PAYMENT_NO
      (Form 21a) Entitlement to continued payment no (keinen Anspruch auf Entgeltfortzahlung) checkbox.
      ENTITLEMENT_TO_CONTINUED_PAYMENT_YES
      (Form 21a) Entitlement to continued payment yes (Anspruch auf Entgeltfortzahlung) checkbox.
      FINAL_CERTIFICATE
      (Form 1) Final certificate (Endbescheinigung) checkbox.
      INITIAL_CERTIFICATE
      (Form 1) Initial certificate (Erstbescheinigung) checkbox.
      INSURED_PAY_CASE
      (Form 1) Insured pay case (ab 7.
      OTHER_ACCIDENT
      (Form 1) Other accident (Sonstiger Unfall, Unfallfolgen) checkbox.
      RENEWED_CERTIFICATE
      (Form 1) Renewed certificate (Folgebescheinigung) checkbox.
      REQUIRES_CARE_NO
      (Form 21a) Requires care no (Die Art der Erkrankung macht die Betreuung und Beaufsichtigung notwendig...
      REQUIRES_CARE_YES
      (Form 21a) Requires care yes (Die Art der Erkrankung macht die Betreuung und Beaufsichtigung notwendig...
      SICK_PAY_WAS_CLAIMED_NO
      (Form 21a) Sick pay was claimed no (Krankengeld aus Anlass einer früheren Erkrankung des umseitig genannten Kindes wurde in diesem Kalenderjahr NICHT bezogen) checkbox.
      SICK_PAY_WAS_CLAIMED_YES
      (Form 21a) Sick pay was claimed yes (Krankengeld aus Anlass einer früheren Erkrankung des umseitig genannten Kindes wurde in diesem Kalenderjahr bezogen) checkbox.
      SINGLE_PARENT_NO
      (Form 21a) Single parent no (Ich bin Alleinerziehende(r)...
      SINGLE_PARENT_YES
      (Form 21a) Single parent yes (Ich bin Alleinerziehende(r)...
      UNKNOWN
      Unknown checkbox type.
      WORK_ACCIDENT
      (Form 1) Work accident (Arbeitsunfall, Arbeitsunfall-folgen, Berufskrankheit) checkbox.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static MedicalCertificateCheckBoxType valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static MedicalCertificateCheckBoxType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • WORK_ACCIDENT

        public static final MedicalCertificateCheckBoxType WORK_ACCIDENT
        (Form 1) Work accident (Arbeitsunfall, Arbeitsunfall-folgen, Berufskrankheit) checkbox.
      • ASSIGNED_TO_ACCIDENT_INSURANCE_DOCTOR

        public static final MedicalCertificateCheckBoxType ASSIGNED_TO_ACCIDENT_INSURANCE_DOCTOR
        (Form 1) Assigned to accident insurance doctor (dem Durchgangsarzt zugewiesen) checkbox.
      • INITIAL_CERTIFICATE

        public static final MedicalCertificateCheckBoxType INITIAL_CERTIFICATE
        (Form 1) Initial certificate (Erstbescheinigung) checkbox.
      • RENEWED_CERTIFICATE

        public static final MedicalCertificateCheckBoxType RENEWED_CERTIFICATE
        (Form 1) Renewed certificate (Folgebescheinigung) checkbox.
      • INSURED_PAY_CASE

        public static final MedicalCertificateCheckBoxType INSURED_PAY_CASE
        (Form 1) Insured pay case (ab 7. AU-Woche oder sonstiger Krankengeldfall) checkbox.
      • REQUIRES_CARE_YES

        public static final MedicalCertificateCheckBoxType REQUIRES_CARE_YES
        (Form 21a) Requires care yes (Die Art der Erkrankung macht die Betreuung und Beaufsichtigung notwendig... ja) checkbox.
      • REQUIRES_CARE_NO

        public static final MedicalCertificateCheckBoxType REQUIRES_CARE_NO
        (Form 21a) Requires care no (Die Art der Erkrankung macht die Betreuung und Beaufsichtigung notwendig... nein) checkbox.
      • OTHER_ACCIDENT

        public static final MedicalCertificateCheckBoxType OTHER_ACCIDENT
        (Form 1) Other accident (Sonstiger Unfall, Unfallfolgen) checkbox.
      • ENTITLEMENT_TO_CONTINUED_PAYMENT_YES

        public static final MedicalCertificateCheckBoxType ENTITLEMENT_TO_CONTINUED_PAYMENT_YES
        (Form 21a) Entitlement to continued payment yes (Anspruch auf Entgeltfortzahlung) checkbox.
      • ENTITLEMENT_TO_CONTINUED_PAYMENT_NO

        public static final MedicalCertificateCheckBoxType ENTITLEMENT_TO_CONTINUED_PAYMENT_NO
        (Form 21a) Entitlement to continued payment no (keinen Anspruch auf Entgeltfortzahlung) checkbox.
      • SICK_PAY_WAS_CLAIMED_NO

        public static final MedicalCertificateCheckBoxType SICK_PAY_WAS_CLAIMED_NO
        (Form 21a) Sick pay was claimed no (Krankengeld aus Anlass einer früheren Erkrankung des umseitig genannten Kindes wurde in diesem Kalenderjahr NICHT bezogen) checkbox.
      • SICK_PAY_WAS_CLAIMED_YES

        public static final MedicalCertificateCheckBoxType SICK_PAY_WAS_CLAIMED_YES
        (Form 21a) Sick pay was claimed yes (Krankengeld aus Anlass einer früheren Erkrankung des umseitig genannten Kindes wurde in diesem Kalenderjahr bezogen) checkbox.
      • SINGLE_PARENT_NO

        public static final MedicalCertificateCheckBoxType SINGLE_PARENT_NO
        (Form 21a) Single parent no (Ich bin Alleinerziehende(r)... nein) checkbox.
      • SINGLE_PARENT_YES

        public static final MedicalCertificateCheckBoxType SINGLE_PARENT_YES
        (Form 21a) Single parent yes (Ich bin Alleinerziehende(r)... ja) checkbox.
    • Method Detail

      • values

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

        public static MedicalCertificateCheckBoxType 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