Package io.scanbot.sdk.ocr
Enum OcrEngine.EngineMode
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum OcrEngine.EngineMode extends Enum<OcrEngine.EngineMode>
Represents the OCR and PDF engine modes.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description TESSERACT
The Tesseract OCR and PDF engine.
SCANBOT_OCR
The default mode. It uses the Scanbot OCR and PDF engine.
-
Method Summary
Modifier and Type Method Description final OcrEngine.EngineMode
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<OcrEngine.EngineMode>
values()
Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final OcrEngine.EngineMode valueOf(String value)
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.)
-
values
final Array<OcrEngine.EngineMode> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
-
-
-