Package io.scanbot.sdk.genericdocument
Class FieldParsedData
- java.lang.Object
-
- io.scanbot.sdk.genericdocument.FieldParsedData
-
public class FieldParsedData extends java.lang.ObjectParsed data.
-
-
Constructor Summary
Constructors Constructor Description FieldParsedData(FieldDataFormat type, java.lang.String value)Constructs FieldParsedData with the given params.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FieldDataFormatgetType()Getter for type field.java.lang.StringgetValue()Getter for value field.
-
-
-
Constructor Detail
-
FieldParsedData
public FieldParsedData(FieldDataFormat type, java.lang.String value)
Constructs FieldParsedData with the given params.- Parameters:
type- Parsing type.value- Parsed value.
-
-
Method Detail
-
getType
public FieldDataFormat getType()
Getter for type field. See constructor documentation for more information about the field.- Returns:
- type
-
getValue
public java.lang.String getValue()
Getter for value field. See constructor documentation for more information about the field.- Returns:
- value
-
-