Package com.microblink.blinkid.view
Enum Class NotSupportedReason
- All Implemented Interfaces:
Serializable
,Comparable<NotSupportedReason>
,Constable
Enum describing reason why scanning is not supported.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionIndicates that device has been blacklisted by developers because it is known that scanning will not work on itIndicates that set license key does not allow setting this view on custom activity.Indicates that current build configuration requires valid license to be set with eitherMicroblinkSDK.setLicenseKey(String, Context)
,MicroblinkSDK.setLicenseBuffer(byte[], Context)
orMicroblinkSDK.setLicenseFile(String, Context)
before using the scanner and set license is not validIndicates that device does not have cameraIndicates that current version of android is not supported.Indicates that device has a processor that is not supported (for example ARMv7 processor without NEON SIMD instruction support) -
Method Summary
Modifier and TypeMethodDescriptionstatic NotSupportedReason
Returns the enum constant of this class with the specified name.static NotSupportedReason[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNSUPPORTED_ANDROID_VERSION
Indicates that current version of android is not supported. Newer Android version is required. -
NO_CAMERA
Indicates that device does not have camera -
BLACKLISTED_DEVICE
Indicates that device has been blacklisted by developers because it is known that scanning will not work on it -
INVALID_OR_MISSING_LICENSE
Indicates that current build configuration requires valid license to be set with eitherMicroblinkSDK.setLicenseKey(String, Context)
,MicroblinkSDK.setLicenseBuffer(byte[], Context)
orMicroblinkSDK.setLicenseFile(String, Context)
before using the scanner and set license is not valid -
CUSTOM_UI_FORBIDDEN
Indicates that set license key does not allow setting this view on custom activity. -
UNSUPPORTED_PROCESSOR_ARCHITECTURE
Indicates that device has a processor that is not supported (for example ARMv7 processor without NEON SIMD instruction support)
-
-
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
-
getDescription
-