Enum MedicalCertificateDateRecordType
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum MedicalCertificateDateRecordType extends Enum<MedicalCertificateDateRecordType>
Type of a date record.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
MedicalCertificateDateRecordType.Companion
-
Enum Constant Summary
Enum Constants Enum Constant Description INCAPABLE_OF_WORK_SINCE
(Form 1) Incapable of work since (arbeitsunfähig seit) date.
INCAPABLE_OF_WORK_UNTIL
(Form 1) Incapable of work until (voraussichtlich arbeitsunfähig bis einschließlich oder letzter Tag der Arbeitsunfähigkeit) date.
DIAGNOSED_ON
(Form 1) Diagnosed on (festgestellt am) date.
DOCUMENT_DATE
Document date.
BIRTH_DATE
Birthdate (geb. am).
CHILD_NEEDS_CARE_FROM
(Form 21a) Child needs care from (Das genannte Kind bedarf/bedurfte vom) date.
CHILD_NEEDS_CARE_UNTIL
(Form 21a) Child needs care until (Das genannte Kind bedarf/bedurfte bis einschließlich) date.
UNDEFINED
Undefined date type.
-
Method Summary
Modifier and Type Method Description final String
toJson()
final MedicalCertificateDateRecordType
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<MedicalCertificateDateRecordType>
values()
Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final MedicalCertificateDateRecordType 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<MedicalCertificateDateRecordType> 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.
-
-
-
-