Class IbanParser
java.lang.Object
com.microblink.blinkinput.entities.Entity<T>
com.microblink.blinkinput.entities.parsers.Parser<IbanParser.Result>
com.microblink.blinkinput.entities.parsers.iban.IbanParser
- All Implemented Interfaces:
android.os.Parcelable
A parser that can extract IBAN (International Bank Account Number) from OCR result.
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsFields inherited from class com.microblink.blinkinput.entities.parsers.Parser
CLASS_NAMEFields inherited from interface android.os.Parcelable
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidClears parser result.clone()Create a copy of the entity.voidconsumeResult(IbanParser.Result resultToConsume) Consumes given result.voidconsumeResultFrom(Entity other) Consume result from other entity.protected voiddeserializeNativeSettings(byte[] serializedSettings) String[]Set of allowed country codes.protected byte[]voidsetAlwaysReturnPrefix(boolean alwaysReturnPrefix) Should prefix (country code) always be returned.voidsetCountryCodeWhitelist(String[] countryCodeWhitelist) Set of allowed country codes.booleanShould prefix (country code) always be returned.protected voidterminateNative(long nativeContext) Methods inherited from class com.microblink.blinkinput.entities.parsers.Parser
getPriority, isRequired, setRequiredMethods inherited from class com.microblink.blinkinput.entities.Entity
describeContents, finalize, getNativeContext, getResult, nativeGetNativeResultContext, readFromParcel, writeToParcel
-
Field Details
-
CREATOR
-
-
Constructor Details
-
IbanParser
public IbanParser()
-
-
Method Details
-
setCountryCodeWhitelist
Set of allowed country codes. If whitelist is defined, only IBANs with defined country codes will be recognized. For example to allow only Croatian IBANs define whitelist with country code "HR". If whitelist is not defined, or if it is set tonull, all valid IBANs will be returned. By default, this is set to '[]' -
getCountryCodeWhitelist
Set of allowed country codes. If whitelist is defined, only IBANs with defined country codes will be recognized. For example to allow only Croatian IBANs define whitelist with country code "HR". If whitelist is not defined, or if it is set tonull, all valid IBANs will be returned. By default, this is set to '[]' -
setAlwaysReturnPrefix
public void setAlwaysReturnPrefix(boolean alwaysReturnPrefix) Should prefix (country code) always be returned. By default, this is set to 'false' -
shouldAlwaysReturnPrefix
public boolean shouldAlwaysReturnPrefix()Should prefix (country code) always be returned. By default, this is set to 'false' -
terminateNative
protected void terminateNative(long nativeContext) - Specified by:
terminateNativein classEntity<IbanParser.Result>
-
serializeNativeSettings
@Nullable protected byte[] serializeNativeSettings()- Specified by:
serializeNativeSettingsin classEntity<IbanParser.Result>
-
deserializeNativeSettings
protected void deserializeNativeSettings(@NonNull byte[] serializedSettings) - Specified by:
deserializeNativeSettingsin classEntity<IbanParser.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 classEntity<IbanParser.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<IbanParser.Result>- Parameters:
other- Entity from which result should be consumed.
-
consumeResult
Description copied from class:ParserConsumes given result. The given result will be put instead current result of this entity.- Specified by:
consumeResultin classParser<IbanParser.Result>- Parameters:
resultToConsume- Result that should be consumed.
-
clearResult
public void clearResult()Description copied from class:ParserClears parser result.- Specified by:
clearResultin classParser<IbanParser.Result>
-