Enum DocumentDataExtractionStatus
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum DocumentDataExtractionStatus extends Enum<DocumentDataExtractionStatus>
The status of the extraction process.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
DocumentDataExtractionStatus.Companion
-
Enum Constant Summary
Enum Constants Enum Constant Description SUCCESS
The document was extracted successfully.
ERROR_NOTHING_FOUND
No document was detected.
ERROR_BAD_CROP
A document was detected, but it was at an angle/distance that was too large.
ERROR_UNKNOWN_DOCUMENT
A document was detected, but it was not extracted as a supported document.
ERROR_UNACCEPTABLE_DOCUMENT
A document was detected as a supported document, but it was not part of the accepted documents.
INCOMPLETE_VALIDATION
All fields were extracted, but some of them failed validation.
-
Method Summary
Modifier and Type Method Description final String
toJson()
final DocumentDataExtractionStatus
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<DocumentDataExtractionStatus>
values()
Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final DocumentDataExtractionStatus 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<DocumentDataExtractionStatus> 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.
-
-
-
-