public static enum IRecognitionCoreAPI.Warning extends java.lang.Enum<IRecognitionCoreAPI.Warning>
Enum Constant and Description |
---|
ProbablyLowQualityImage
The image probably has low quality
|
ProbablyWrongLanguage
The chosen recognition language is probably wrong
|
RecognitionIsSlow
The image is being recognized too slowly, perhaps something is going wrong
|
TextTooSmall
The text is too small.
|
WrongLanguage
The chosen recognition language is wrong
|
Modifier and Type | Method and Description |
---|---|
static IRecognitionCoreAPI.Warning |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IRecognitionCoreAPI.Warning[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IRecognitionCoreAPI.Warning RecognitionIsSlow
public static final IRecognitionCoreAPI.Warning ProbablyLowQualityImage
public static final IRecognitionCoreAPI.Warning ProbablyWrongLanguage
public static final IRecognitionCoreAPI.Warning WrongLanguage
public static final IRecognitionCoreAPI.Warning TextTooSmall
public static IRecognitionCoreAPI.Warning[] values()
for (IRecognitionCoreAPI.Warning c : IRecognitionCoreAPI.Warning.values()) System.out.println(c);
public static IRecognitionCoreAPI.Warning 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