Enum DocumentQualityAnalyzerCompatibilityMode
- java.lang.Object
-
- java.lang.Enum<DocumentQualityAnalyzerCompatibilityMode>
-
- io.scanbot.sdk.documentqualityanalyzer.DocumentQualityAnalyzerCompatibilityMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DocumentQualityAnalyzerCompatibilityMode>
public enum DocumentQualityAnalyzerCompatibilityMode extends java.lang.Enum<DocumentQualityAnalyzerCompatibilityMode>
Compatibility mode for the Document Quality Analyzer. In this mode, the analyzer will return results that are identical to older versions of the SDK.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description V8Compatible with version 8 of the Scanbot SDK.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DocumentQualityAnalyzerCompatibilityModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DocumentQualityAnalyzerCompatibilityMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
V8
public static final DocumentQualityAnalyzerCompatibilityMode V8
Compatible with version 8 of the Scanbot SDK.
-
-
Method Detail
-
values
public static DocumentQualityAnalyzerCompatibilityMode[] 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 (DocumentQualityAnalyzerCompatibilityMode c : DocumentQualityAnalyzerCompatibilityMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DocumentQualityAnalyzerCompatibilityMode 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
-
-