Class Field
-
- All Implemented Interfaces:
-
android.os.Parcelable
,java.lang.AutoCloseable
public final class Field implements AutoCloseable, Parcelable
Generic document field.
-
-
Field Summary
Fields Modifier and Type Field Description private final FieldType
type
private final OcrResult
value
private final Double
confidenceWeight
private final ImageRef
image
private final List<PointF>
polygonInRoot
private final FieldValidationStatus
validationStatus
private final List<FieldParsedData>
parsedData
-
Method Summary
Modifier and Type Method Description final FieldType
getType()
The type of the field. final OcrResult
getValue()
Value of the field. final Double
getConfidenceWeight()
Confidence weight. final ImageRef
getImage()
Crop of the field. final List<PointF>
getPolygonInRoot()
Coordinates of the field in the root document coordinate system. final FieldValidationStatus
getValidationStatus()
Field validation status. final List<FieldParsedData>
getParsedData()
Parsed data. final JSONObject
toJson(ToJsonConfiguration config)
final Field
clone()
Unit
close()
-
-
-
Constructor Detail
-
Field
Field(JSONObject json)
-
Field
Field(FieldType type, OcrResult value, Double confidenceWeight, ImageRef image, List<PointF> polygonInRoot, FieldValidationStatus validationStatus, List<FieldParsedData> parsedData)
-
-
Method Detail
-
getConfidenceWeight
final Double getConfidenceWeight()
Confidence weight.
Default is 1.0
-
getPolygonInRoot
final List<PointF> getPolygonInRoot()
Coordinates of the field in the root document coordinate system.
-
getValidationStatus
final FieldValidationStatus getValidationStatus()
Field validation status. Applicable only to fields that support some kind of validation.
Default is NONE
-
getParsedData
final List<FieldParsedData> getParsedData()
Parsed data.
-
toJson
final JSONObject toJson(ToJsonConfiguration config)
-
-