Package com.microblink.blinkid.util
Enum Class RecognizerCompatibilityStatus
java.lang.Object
java.lang.Enum<RecognizerCompatibilityStatus>
com.microblink.blinkid.util.RecognizerCompatibilityStatus
- All Implemented Interfaces:
Serializable
,Comparable<RecognizerCompatibilityStatus>
,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDevice is on blacklist and PhotoPay is not supported on that device.Device does not have camera.Recognizer is not supported on device's processor architecture.Recognizer is not supported (unknown reason).Recognizer is fully supported on this device.Device's Android version is not supported. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static RecognizerCompatibilityStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
RECOGNIZER_SUPPORTED
Recognizer is fully supported on this device. -
PROCESSOR_ARCHITECTURE_NOT_SUPPORTED
Recognizer is not supported on device's processor architecture. -
NO_CAMERA
Device does not have camera. -
DEVICE_BLACKLISTED
Device is on blacklist and PhotoPay is not supported on that device. -
UNSUPPORTED_ANDROID_VERSION
Device's Android version is not supported. -
RECOGNIZER_NOT_SUPPORTED
Recognizer is not supported (unknown reason).
-
-
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
-