Enum Class BlinkCardProcessingStatus

java.lang.Object
java.lang.Enum<BlinkCardProcessingStatus>
com.microblink.blinkcard.entities.recognizers.blinkcard.BlinkCardProcessingStatus
All Implemented Interfaces:
Serializable, Comparable<BlinkCardProcessingStatus>, Constable

public enum BlinkCardProcessingStatus extends Enum<BlinkCardProcessingStatus>
Detailed information about the recognition process.
  • Enum Constant Details

    • Success

      public static final BlinkCardProcessingStatus Success
      Recognition was successful.
    • DetectionFailed

      public static final BlinkCardProcessingStatus DetectionFailed
      Detection of the document failed.
    • ImagePreprocessingFailed

      public static final BlinkCardProcessingStatus ImagePreprocessingFailed
      Preprocessing of the input image has failed.
    • StabilityTestFailed

      public static final BlinkCardProcessingStatus StabilityTestFailed
      Recognizer has inconsistent results.
    • ScanningWrongSide

      public static final BlinkCardProcessingStatus ScanningWrongSide
      Wrong side of the document has been scanned.
    • FieldIdentificationFailed

      public static final BlinkCardProcessingStatus FieldIdentificationFailed
      Identification of the fields present on the card has failed.
    • ImageReturnFailed

      public static final BlinkCardProcessingStatus ImageReturnFailed
      Failed to return a requested image.
    • UnsupportedCard

      public static final BlinkCardProcessingStatus UnsupportedCard
      Payment card currently not supported by the recognizer.
  • Method Details

    • values

      public static BlinkCardProcessingStatus[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static BlinkCardProcessingStatus valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null