Class ParserGroupProcessor

All Implemented Interfaces:
android.os.Parcelable

public class ParserGroupProcessor extends Processor<ParserGroupProcessor.Result>
Processor that performs OCR on the image and activates all parsers in the group to extract data of interest from the OCR result.
  • Field Details

    • CREATOR

      @NonNull public static final android.os.Parcelable.Creator<ParserGroupProcessor> CREATOR
  • Constructor Details

    • ParserGroupProcessor

      public ParserGroupProcessor(@NonNull Parser... parsers)
      Parameters:
      parsers - Parsers that are members of the parser group.
  • Method Details

    • getParsers

      @NonNull public Parser[] getParsers()
      Returns array of parsers in the parser group.
      Returns:
      array of parsers in the parser group.
    • terminateNative

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

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

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

      @NonNull public ParserGroupProcessor 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<ParserGroupProcessor.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<ParserGroupProcessor.Result>
      Parameters:
      other - Entity from which result should be consumed.
    • writeToParcel

      public void writeToParcel(@NonNull android.os.Parcel dest, int i)
      Specified by:
      writeToParcel in interface android.os.Parcelable
      Overrides:
      writeToParcel in class Entity<ParserGroupProcessor.Result>
    • nativeSetParsers

      public static void nativeSetParsers(long nativeContext, @NonNull long[] nativeParsersContexts)