Enum Class AztecCode.Failure

java.lang.Object
java.lang.Enum<AztecCode.Failure>
boofcv.alg.fiducial.aztec.AztecCode.Failure
All Implemented Interfaces:
Serializable, Comparable<AztecCode.Failure>, java.lang.constant.Constable
Enclosing class:
AztecCode

public static enum AztecCode.Failure extends Enum<AztecCode.Failure>
At what stage did it fail at?
  • Enum Constant Details

    • NONE

      public static final AztecCode.Failure NONE
      No failure
    • IMPROBABLE

      public static final AztecCode.Failure IMPROBABLE
      Reconstruction resulted in a very odd shape and this is most likely noise
    • ORIENTATION

      public static final AztecCode.Failure ORIENTATION
      Orientation could not be determined
    • MODE_ECC

      public static final AztecCode.Failure MODE_ECC
      Error correction failed when decoding the mode
    • MESSAGE_ECC

      public static final AztecCode.Failure MESSAGE_ECC
      Error correction failed when decoding the message
    • MESSAGE_PARSE

      public static final AztecCode.Failure MESSAGE_PARSE
      Could not parse the message
  • Method Details

    • values

      public static AztecCode.Failure[] 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 AztecCode.Failure 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