Enum DocumentType
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum DocumentType extends Enum<DocumentType>
Represents the type of document being captured.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<DocumentType>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDRESS_STATEMENTA document that can be used to verify an address.
MEDICAL_DOCA document of a medical nature.
OTHER_DOCUMENT_1Any other document to capture that doesn't require special handling.
OTHER_DOCUMENT_2A second other document to capture that doesn't require special handling.
OTHER_DOCUMENT_3A third other document to capture that doesn't require special handling.
PAYMENT_PROOFA document showing that something was paid for.
-
Method Summary
Modifier and Type Method Description final DocumentTypevalueOf(String value)Returns the enum constant of this type with the specified name. final Array<DocumentType>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<DocumentType>getEntries()Represents the type of document being captured. -
-
Method Detail
-
valueOf
final DocumentType 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<DocumentType> 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.
-
getEntries
final EnumEntries<DocumentType> getEntries()
Represents the type of document being captured.
-
-
-
-