Enum MedicalCertificateCheckBoxType
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum MedicalCertificateCheckBoxType extends Enum<MedicalCertificateCheckBoxType>
Type of the checkbox.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
MedicalCertificateCheckBoxType.Companion
-
Enum Constant Summary
Enum Constants Enum Constant Description UNKNOWN
Unknown checkbox type.
WORK_ACCIDENT
(Form 1) Work accident (Arbeitsunfall, Arbeitsunfall-folgen, Berufskrankheit) checkbox.
ASSIGNED_TO_ACCIDENT_INSURANCE_DOCTOR
(Form 1) Assigned to accident insurance doctor (dem Durchgangsarzt zugewiesen) checkbox.
INITIAL_CERTIFICATE
(Form 1) Initial certificate (Erstbescheinigung) checkbox.
RENEWED_CERTIFICATE
(Form 1) Renewed certificate (Folgebescheinigung) checkbox.
INSURED_PAY_CASE
(Form 1) Insured pay case (ab 7. AU-Woche oder sonstiger Krankengeldfall) checkbox.
FINAL_CERTIFICATE
(Form 1) Final certificate (Endbescheinigung) checkbox.
REQUIRES_CARE_YES
(Form 21a) Requires care yes (Die Art der Erkrankung macht die Betreuung und Beaufsichtigung notwendig... ja) checkbox.
REQUIRES_CARE_NO
(Form 21a) Requires care no (Die Art der Erkrankung macht die Betreuung und Beaufsichtigung notwendig... nein) checkbox.
ACCIDENT_YES
(Form 21a) Accident yes (Unfall... ja) checkbox.
ACCIDENT_NO
(Form 21a) Accident no (Unfall... nein) checkbox.
OTHER_ACCIDENT
(Form 1) Other accident (Sonstiger Unfall, Unfallfolgen) checkbox.
ENTITLEMENT_TO_CONTINUED_PAYMENT_YES
(Form 21a) Entitlement to continued payment yes (Anspruch auf Entgeltfortzahlung) checkbox.
ENTITLEMENT_TO_CONTINUED_PAYMENT_NO
(Form 21a) Entitlement to continued payment no (keinen Anspruch auf Entgeltfortzahlung) checkbox.
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)... nein) checkbox.
SINGLE_PARENT_YES
(Form 21a) Single parent yes (Ich bin Alleinerziehende(r)... ja) checkbox.
-
Method Summary
Modifier and Type Method Description final String
toJson()
final MedicalCertificateCheckBoxType
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<MedicalCertificateCheckBoxType>
values()
Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final MedicalCertificateCheckBoxType 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<MedicalCertificateCheckBoxType> 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.
-
-
-
-