Package io.scanbot.sdk.documentdata
Class DeAddressParserConfiguration
- java.lang.Object
-
- io.scanbot.sdk.documentdata.DocumentDataExtractorConfigurationElement
-
- io.scanbot.sdk.documentdata.DeAddressParserConfiguration
-
public class DeAddressParserConfiguration extends DocumentDataExtractorConfigurationElement
German Address Field validation configuration. This configuration does not enable the scanning of any document types by itself. Add to recognizer configuration to require German Address validation checks for specific document types.
-
-
Constructor Summary
Constructors Constructor Description DeAddressParserConfiguration(java.util.List<java.lang.String> documentTypes)Constructs DeAddressParserConfiguration with default parameters.DeAddressParserConfiguration(java.util.List<java.lang.String> documentTypes, java.lang.String binaryFileAddressDatabase)Constructs DeAddressParserConfiguration with the given params.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetBinaryFileAddressDatabase()Getter for binaryFileAddressDatabase field.java.util.List<java.lang.String>getDocumentTypes()Getter for documentTypes field.voidsetBinaryFileAddressDatabase(java.lang.String binaryFileAddressDatabase)Setter for binaryFileAddressDatabase field.voidsetDocumentTypes(java.util.List<java.lang.String> documentTypes)Setter for documentTypes field.
-
-
-
Constructor Detail
-
DeAddressParserConfiguration
public DeAddressParserConfiguration(java.util.List<java.lang.String> documentTypes, java.lang.String binaryFileAddressDatabase)Constructs DeAddressParserConfiguration with the given params.- Parameters:
documentTypes- List of generic document formats for which German Address validation has to be applied.binaryFileAddressDatabase- binary file with address database. Default is ""
-
DeAddressParserConfiguration
public DeAddressParserConfiguration(java.util.List<java.lang.String> documentTypes)
Constructs DeAddressParserConfiguration with default parameters.- Parameters:
documentTypes- List of generic document formats for which German Address validation has to be applied.
-
-
Method Detail
-
getDocumentTypes
public java.util.List<java.lang.String> getDocumentTypes()
Getter for documentTypes field. See constructor documentation for more information about the field.- Returns:
- documentTypes
-
setDocumentTypes
public void setDocumentTypes(java.util.List<java.lang.String> documentTypes)
Setter for documentTypes field. See constructor documentation for more information about the field.- Parameters:
documentTypes- Value to set.
-
getBinaryFileAddressDatabase
public java.lang.String getBinaryFileAddressDatabase()
Getter for binaryFileAddressDatabase field. See constructor documentation for more information about the field.- Returns:
- binaryFileAddressDatabase
-
setBinaryFileAddressDatabase
public void setBinaryFileAddressDatabase(java.lang.String binaryFileAddressDatabase)
Setter for binaryFileAddressDatabase field. See constructor documentation for more information about the field.- Parameters:
binaryFileAddressDatabase- Value to set.
-
-