Enum JsonGenericDocumentType
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum JsonGenericDocumentType extends Enum<JsonGenericDocumentType>
Supported document types
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DE_ID_CARD_FRONTGerman ID card, front side
DE_ID_CARD_BACKGerman ID card, back side
DE_PASSPORTGerman travel passport (Reisepass)
DE_DRIVER_LICENSE_FRONTGerman driver license (Führerschein), front side
DE_DRIVER_LICENSE_BACKGerman driver license (Führerschein), back side
DE_RESIDENCE_PERMIT_FRONTGerman Residence Permit (Aufenthaltstitel), front side
DE_RESIDENCE_PERMIT_BACKGerman Residence Permit (Aufenthaltstitel), back side
DE_HEALTH_INSURANCE_CARD_FRONTGerman health insurance card, front side
EU_HEALTH_INSURANCE_CARDEuropean health insurance card
-
Method Summary
Modifier and Type Method Description final JsonGenericDocumentTypevalueOf(String value)Returns the enum constant of this type with the specified name. final Array<JsonGenericDocumentType>values()Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final JsonGenericDocumentType 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<JsonGenericDocumentType> 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.
-
-
-
-