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_FRONT
German ID card, front side
DE_ID_CARD_BACK
German ID card, back side
DE_PASSPORT
German travel passport (Reisepass)
DE_DRIVER_LICENSE_FRONT
German driver license (Führerschein), front side
DE_DRIVER_LICENSE_BACK
German driver license (Führerschein), back side
DE_RESIDENCE_PERMIT_FRONT
German Residence Permit (Aufenthaltstitel), front side
DE_RESIDENCE_PERMIT_BACK
German Residence Permit (Aufenthaltstitel), back side
DE_HEALTH_INSURANCE_CARD_FRONT
German health insurance card, front side
EU_HEALTH_INSURANCE_CARD
European health insurance card
-
Method Summary
Modifier and Type Method Description final JsonGenericDocumentType
valueOf(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.
-
-
-
-