Enum Class DataMatchState

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

public enum DataMatchState extends Enum<DataMatchState>
State of the data matching algorithm for scanned parts/sides of the document.
  • Enum Constant Details

    • NotPerformed

      public static final DataMatchState NotPerformed
      Data matching has not been performed.
    • Failed

      public static final DataMatchState Failed
      Data does not match.
    • Success

      public static final DataMatchState Success
      Data match.
  • Method Details

    • values

      public static DataMatchState[] 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 DataMatchState 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