Package io.scanbot.sdk.ocr
Enum OpticalCharacterRecognizer.EngineMode
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum OpticalCharacterRecognizer.EngineMode extends Enum<OpticalCharacterRecognizer.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 OpticalCharacterRecognizer.EngineMode
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<OpticalCharacterRecognizer.EngineMode>
values()
Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final OpticalCharacterRecognizer.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<OpticalCharacterRecognizer.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.
-
-
-
-