Enum RecognitionMode
- java.lang.Object
-
- java.lang.Enum<RecognitionMode>
-
- com.microblink.entities.recognizers.blinkid.generic.RecognitionMode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RecognitionMode>
public enum RecognitionMode extends java.lang.Enum<RecognitionMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BarcodeId
Recognition of barcode document.FullRecognition
Detailed document recognition.MrzId
Recognition of mrz document (does not include visa and passport)MrzPassport
Recognition of passport mrz.MrzVisa
Recognition of visa mrz.None
No recognition performed.PhotoId
Recognition of documents that have face photo on the front.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RecognitionMode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RecognitionMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final RecognitionMode None
No recognition performed.
-
MrzId
public static final RecognitionMode MrzId
Recognition of mrz document (does not include visa and passport)
-
MrzVisa
public static final RecognitionMode MrzVisa
Recognition of visa mrz.
-
MrzPassport
public static final RecognitionMode MrzPassport
Recognition of passport mrz.
-
PhotoId
public static final RecognitionMode PhotoId
Recognition of documents that have face photo on the front.
-
FullRecognition
public static final RecognitionMode FullRecognition
Detailed document recognition.
-
BarcodeId
public static final RecognitionMode BarcodeId
Recognition of barcode document.
-
-
Method Detail
-
values
public static RecognitionMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RecognitionMode c : RecognitionMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RecognitionMode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-