Enum Class Recognizer.Result.State
java.lang.Object
java.lang.Enum<Recognizer.Result.State>
com.microblink.blinkid.entities.recognizers.Recognizer.Result.State
- All Implemented Interfaces:
Serializable
,Comparable<Recognizer.Result.State>
,Constable
- Enclosing class:
- Recognizer.Result
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionNo information was extracted.All mandatory information from one side of the document was extracted.Some but not all mandatory information was extractedAll mandatory information was extracted. -
Method Summary
Modifier and TypeMethodDescriptionstatic Recognizer.Result.State
Returns the enum constant of this class with the specified name.static Recognizer.Result.State[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Empty
No information was extracted. -
Uncertain
Some but not all mandatory information was extracted -
Valid
All mandatory information was extracted. -
StageValid
All mandatory information from one side of the document was extracted.
-
-
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
-