Package io.scanbot.sdk.documentdata
Class FieldValueSemantics
- java.lang.Object
-
- io.scanbot.sdk.documentdata.FieldValueSemantics
-
public class FieldValueSemantics extends java.lang.ObjectReport of the field value semantics verification.
-
-
Constructor Summary
Constructors Constructor Description FieldValueSemantics(java.lang.String fieldFullName, boolean invalidSemantics)Constructs FieldValueSemantics with the given params.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetFieldFullName()Getter for fieldFullName field.booleangetInvalidSemantics()Getter for invalidSemantics field.
-
-
-
Constructor Detail
-
FieldValueSemantics
public FieldValueSemantics(java.lang.String fieldFullName, boolean invalidSemantics)Constructs FieldValueSemantics with the given params.- Parameters:
fieldFullName- Full name of the field that was considered during the verification.invalidSemantics- Shows whether the data in the field is semantically invalid, e.g. the date of birth is in the future.
-
-
Method Detail
-
getFieldFullName
public java.lang.String getFieldFullName()
Getter for fieldFullName field. See constructor documentation for more information about the field.- Returns:
- fieldFullName
-
getInvalidSemantics
public boolean getInvalidSemantics()
Getter for invalidSemantics field. See constructor documentation for more information about the field.- Returns:
- invalidSemantics
-
-