Enum DocumentDataExtractionStatus

    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • 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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • 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.