public enum RecognizerCompatibilityStatus extends java.lang.Enum<RecognizerCompatibilityStatus>
| Enum Constant and Description |
|---|
DEVICE_BLACKLISTED
Device is on blacklist and PhotoPay is not supported on that device.
|
NO_CAMERA
Device does not have camera.
|
PROCESSOR_ARCHITECTURE_NOT_SUPPORTED
Recognizer is not supported on device's processor architecture.
|
RECOGNIZER_NOT_SUPPORTED
Recognizer is not supported (unknown reason).
|
RECOGNIZER_SUPPORTED
Recognizer is fully supported on this device.
|
UNSUPPORTED_ANDROID_VERSION
Device's Android version is not supported.
|
| Modifier and Type | Method and Description |
|---|---|
static RecognizerCompatibilityStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecognizerCompatibilityStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecognizerCompatibilityStatus RECOGNIZER_SUPPORTED
public static final RecognizerCompatibilityStatus PROCESSOR_ARCHITECTURE_NOT_SUPPORTED
public static final RecognizerCompatibilityStatus NO_CAMERA
public static final RecognizerCompatibilityStatus DEVICE_BLACKLISTED
public static final RecognizerCompatibilityStatus UNSUPPORTED_ANDROID_VERSION
public static final RecognizerCompatibilityStatus RECOGNIZER_NOT_SUPPORTED
public static RecognizerCompatibilityStatus[] values()
for (RecognizerCompatibilityStatus c : RecognizerCompatibilityStatus.values()) System.out.println(c);
public static RecognizerCompatibilityStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null