Package boofcv.alg.fiducial.aztec
Enum Class AztecCode.Failure
- All Implemented Interfaces:
Serializable
,Comparable<AztecCode.Failure>
,java.lang.constant.Constable
- Enclosing class:
- AztecCode
At what stage did it fail at?
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionReconstruction resulted in a very odd shape and this is most likely noiseError correction failed when decoding the messageCould not parse the messageError correction failed when decoding the modeNo failureOrientation could not be determined -
Method Summary
Modifier and TypeMethodDescriptionstatic AztecCode.Failure
Returns the enum constant of this class with the specified name.static AztecCode.Failure[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
No failure -
IMPROBABLE
Reconstruction resulted in a very odd shape and this is most likely noise -
ORIENTATION
Orientation could not be determined -
MODE_ECC
Error correction failed when decoding the mode -
MESSAGE_ECC
Error correction failed when decoding the message -
MESSAGE_PARSE
Could not parse the message
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-