Package io.scanbot.sdk.ui_v2.document
Class DocumentScannerActivity.Result
-
- All Implemented Interfaces:
-
io.scanbot.sdk.ui_v2.common.activity.ScanbotActivityResult
,io.scanbot.sdk.ui_v2.document.screen.BaseDocumentScannerActivity.AutoCancellableResult
,io.scanbot.sdk.ui_v2.document.screen.BaseDocumentScannerActivity.InternalResult
public final class DocumentScannerActivity.Result implements BaseDocumentScannerActivity.InternalResult
Wrapper-class for all information, obtained as a result of RTU activity work.
-
-
Field Summary
Fields Modifier and Type Field Description private final Integer
resultCode
private final Document
result
private final Boolean
isLicenseInvalid
private final Boolean
sdkIsNotInitialized
private final Boolean
isAutoCancelledByTimeout
-
Method Summary
Modifier and Type Method Description Integer
getResultCode()
Defines whether activity finished and result provided or, for example, Activity. Document
getResult()
Scanning or recognition result - the essence of components work done. Boolean
isLicenseInvalid()
Indicates whether RTU returned due to license issue detected. Boolean
getSdkIsNotInitialized()
Indicates whether RTU returned due to Scanbot SDK is not initialized. Boolean
isAutoCancelledByTimeout()
Flag indicating that component finished it's work prematurely due to timeout. -
-
Method Detail
-
getResultCode
Integer getResultCode()
Defines whether activity finished and result provided or, for example, Activity.RESULT_CANCELED
-
getResult
Document getResult()
Scanning or recognition result - the essence of components work done.
Might be null if resultCode is not Activity.RESULT_OK.
-
isLicenseInvalid
Boolean isLicenseInvalid()
Indicates whether RTU returned due to license issue detected. In case of
true
no result should be expected.
-
getSdkIsNotInitialized
Boolean getSdkIsNotInitialized()
Indicates whether RTU returned due to Scanbot SDK is not initialized. In case of
true
no result should be expected.
-
isAutoCancelledByTimeout
Boolean isAutoCancelledByTimeout()
Flag indicating that component finished it's work prematurely due to timeout. No actual result should be expected.
-
-
-
-