-
- All Implemented Interfaces:
-
android.os.Parcelable
public class GiniCaptureCompoundExtraction implements Parcelable
Contains a Gini API compound extraction.
A compound extraction contains one or more specific extraction maps. For example line items are compound extractions where each line is represented by a specific extraction map. Each specific extraction represents a column on that line.
-
-
Field Summary
Fields Modifier and Type Field Description public final static Parcelable.Creator<GiniCaptureCompoundExtraction>CREATOR
-
Constructor Summary
Constructors Constructor Description GiniCaptureCompoundExtraction(String name, List<Map<String, GiniCaptureSpecificExtraction>> specificExtractionMaps)Value object for a compound extraction from the Gini API.
-
Method Summary
Modifier and Type Method Description intdescribeContents()voidwriteToParcel(@NonNull() Parcel dest, int flags)StringtoString()StringgetName()List<Map<String, GiniCaptureSpecificExtraction>>getSpecificExtractionMaps()-
-
Constructor Detail
-
GiniCaptureCompoundExtraction
GiniCaptureCompoundExtraction(String name, List<Map<String, GiniCaptureSpecificExtraction>> specificExtractionMaps)
Value object for a compound extraction from the Gini API.- Parameters:
name- The compound extraction's name, e.g.specificExtractionMaps- A list of specific extractions bundled into separate maps.
-
-
Method Detail
-
describeContents
int describeContents()
-
writeToParcel
void writeToParcel(@NonNull() Parcel dest, int flags)
-
getSpecificExtractionMaps
@NonNull() List<Map<String, GiniCaptureSpecificExtraction>> getSpecificExtractionMaps()
-
-
-
-