Package io.scanbot.sdk.mc
Enum MedicalCertificateFormType
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum MedicalCertificateFormType extends Enum<MedicalCertificateFormType>
Type of the medical certificate form.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
MedicalCertificateFormType.Companion
-
Enum Constant Summary
Enum Constants Enum Constant Description UNKNOWN
Unknown form type.
FORM_1A
Form 1A.
FORM_1B
Form 1B.
FORM_1C
Form 1C.
FORM_1D
Form 1D.
FORM_21A
Form 21A.
FORM_21A_BACK
Form 21A back.
FORM_1B_CUSTOM
Form 1B custom.
-
Method Summary
Modifier and Type Method Description final String
toJson()
final MedicalCertificateFormType
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<MedicalCertificateFormType>
values()
Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final MedicalCertificateFormType 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<MedicalCertificateFormType> 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.
-
-
-
-