java.lang.Object
com.microblink.photopay.entities.Entity<T>
com.microblink.photopay.entities.parsers.Parser<CroatiaReferenceParser.Result>
com.microblink.photopay.entities.parsers.photopay.croatia.reference.CroatiaReferenceParser
All Implemented Interfaces:
android.os.Parcelable

public final class CroatiaReferenceParser extends Parser<CroatiaReferenceParser.Result>
Parser that can extract Croatian payment reference number from the OCR result.
  • Field Details

  • Constructor Details

    • CroatiaReferenceParser

      public CroatiaReferenceParser()
  • Method Details

    • setAllowUnverifiedReferences

      public void setAllowUnverifiedReferences(boolean allowUnverifiedReferences)
      Whether returning of unverified results is allowed. Unverified result is result that is parsed, but check digits are incorrect. By default, this is set to 'false'.
    • shouldAllowUnverifiedReferences

      public boolean shouldAllowUnverifiedReferences()
      Whether returning of unverified results is allowed. Unverified result is result that is parsed, but check digits are incorrect. By default, this is set to 'false'.
    • terminateNative

      protected void terminateNative(long nativeContext)
      Specified by:
      terminateNative in class Entity<CroatiaReferenceParser.Result>
    • serializeNativeSettings

      @Nullable protected byte[] serializeNativeSettings()
      Specified by:
      serializeNativeSettings in class Entity<CroatiaReferenceParser.Result>
    • deserializeNativeSettings

      protected void deserializeNativeSettings(@NonNull byte[] serializedSettings)
      Specified by:
      deserializeNativeSettings in class Entity<CroatiaReferenceParser.Result>
    • clone

      public CroatiaReferenceParser clone()
      Description copied from class: Entity
      Create 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 the RecognizerRunnerView or RecognizerRunner with the updated entity hierarchy.
      Specified by:
      clone in class Entity<CroatiaReferenceParser.Result>
      Returns:
      a copy of the entity
    • consumeResultFrom

      public void consumeResultFrom(@NonNull Entity other)
      Description copied from class: Entity
      Consume result from other entity. The result from other will be put instead current result of this entity. This method is used inside BaseIntentTransferable.loadFromIntent(Intent) and similar methods to replace the result content of the saved entities with results that have arrived over Intent
      Specified by:
      consumeResultFrom in class Entity<CroatiaReferenceParser.Result>
      Parameters:
      other - Entity from which result should be consumed.
    • consumeResult

      public void consumeResult(@NonNull CroatiaReferenceParser.Result resultToConsume)
      Description copied from class: Parser
      Consumes given result. The given result will be put instead current result of this entity.
      Specified by:
      consumeResult in class Parser<CroatiaReferenceParser.Result>
      Parameters:
      resultToConsume - Result that should be consumed.
    • clearResult

      public void clearResult()
      Description copied from class: Parser
      Clears parser result.
      Specified by:
      clearResult in class Parser<CroatiaReferenceParser.Result>