Class CroatiaPdf417PaymentRecognizer
java.lang.Object
com.microblink.photopay.entities.Entity<T>
com.microblink.photopay.entities.recognizers.Recognizer<CroatiaPdf417PaymentRecognizer.Result>
com.microblink.photopay.entities.recognizers.photopay.croatia.CroatiaPdf417PaymentRecognizer
- All Implemented Interfaces:
android.os.Parcelable,JsonizableEntity
public final class CroatiaPdf417PaymentRecognizer
extends Recognizer<CroatiaPdf417PaymentRecognizer.Result>
Recognizer which can scan Croatian payment QR code.
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final android.os.Parcelable.Creator<CroatiaPdf417PaymentRecognizer>Fields inherited from interface android.os.Parcelable
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionclone()Create a copy of the entity.voidconsumeResultFrom(Entity other) Consume result from other entity.protected voiddeserializeNativeSettings(byte[] serializedSettings) floatThe rate at which the conversion from EUR to HRK will be made.booleanUncertain decoding enables scanning of non-standard elements, but there is no guarantee that all data will be read.protected byte[]voidsetConversionRate(float conversionRate) The rate at which the conversion from EUR to HRK will be made.voidsetUncertainDecoding(boolean uncertainDecoding) Uncertain decoding enables scanning of non-standard elements, but there is no guarantee that all data will be read.protected voidterminateNative(long nativeContext) Methods inherited from class com.microblink.photopay.entities.recognizers.Recognizer
getName, isExcludedFromPing, requiresAutofocus, requiresLandscapeMode, signedJsonNativeGet, toSignedJsonMethods inherited from class com.microblink.photopay.entities.Entity
describeContents, finalize, getNativeContext, getResult, nativeGetNativeResultContext, readFromParcel, writeToParcel
-
Field Details
-
CREATOR
-
-
Constructor Details
-
CroatiaPdf417PaymentRecognizer
public CroatiaPdf417PaymentRecognizer()
-
-
Method Details
-
setUncertainDecoding
public void setUncertainDecoding(boolean uncertainDecoding) Uncertain decoding enables scanning of non-standard elements, but there is no guarantee that all data will be read. For Pdf417 barcode is used when multiple rows are missing (e.g. not whole barcode is printed). By default, this is set to 'true'. -
isUncertainDecoding
public boolean isUncertainDecoding()Uncertain decoding enables scanning of non-standard elements, but there is no guarantee that all data will be read. For Pdf417 barcode is used when multiple rows are missing (e.g. not whole barcode is printed). By default, this is set to 'true'. -
setConversionRate
public void setConversionRate(float conversionRate) The rate at which the conversion from EUR to HRK will be made. By default, this is set to '7.5345'. -
getConversionRate
public float getConversionRate()The rate at which the conversion from EUR to HRK will be made. By default, this is set to '7.5345'. -
terminateNative
protected void terminateNative(long nativeContext) - Specified by:
terminateNativein classEntity<CroatiaPdf417PaymentRecognizer.Result>
-
serializeNativeSettings
@Nullable protected byte[] serializeNativeSettings()- Specified by:
serializeNativeSettingsin classEntity<CroatiaPdf417PaymentRecognizer.Result>
-
deserializeNativeSettings
protected void deserializeNativeSettings(@NonNull byte[] serializedSettings) - Specified by:
deserializeNativeSettingsin classEntity<CroatiaPdf417PaymentRecognizer.Result>
-
clone
Description copied from class:EntityCreate a copy of the entity. This is required if properties of the entity must be modified while background thread performs processing. In order to avoid race conditions, changing properties is not allowed while entity is used in background processing. However, you are able to make a copy of the entity, change properties of it and then update theRecognizerRunnerVieworRecognizerRunnerwith the updated entity hierarchy.- Specified by:
clonein classRecognizer<CroatiaPdf417PaymentRecognizer.Result>- Returns:
- a copy of the entity
-
consumeResultFrom
Description copied from class:EntityConsume result from other entity. The result from other will be put instead current result of this entity. This method is used insideBaseIntentTransferable.loadFromIntent(Intent)and similar methods to replace the result content of the saved entities with results that have arrived overIntent- Specified by:
consumeResultFromin classEntity<CroatiaPdf417PaymentRecognizer.Result>- Parameters:
other- Entity from which result should be consumed.
-