Package io.scanbot.sdk.genericdocument
Class GenericDocumentType
- java.lang.Object
-
- io.scanbot.sdk.genericdocument.GenericDocumentType
-
public class GenericDocumentType extends java.lang.ObjectGeneric Document Type.
-
-
Constructor Summary
Constructors Constructor Description GenericDocumentType(java.lang.String name, java.lang.String fullName, java.lang.String normalizedName)Constructs GenericDocumentType with default parameters.GenericDocumentType(java.lang.String name, java.lang.String fullName, java.lang.String normalizedName, java.lang.Integer listIndex)Constructs GenericDocumentType with the given params.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetFullName()Getter for fullName field.java.lang.IntegergetListIndex()Getter for listIndex field.java.lang.StringgetName()Getter for name field.java.lang.StringgetNormalizedName()Getter for normalizedName field.
-
-
-
Constructor Detail
-
GenericDocumentType
public GenericDocumentType(java.lang.String name, java.lang.String fullName, java.lang.String normalizedName, java.lang.Integer listIndex)Constructs GenericDocumentType with the given params.- Parameters:
name- Local document type name.fullName- Unique global document type name prefixed with the document types of all containing documents.normalizedName- Normalized global document type name. Common document types appearing as child documents in different places will often have the same normalized type name.listIndex- A document can contain multiple fields of the same name, the property serves for storing natural order of such fields, null if multiple entries aren't allowed for this field.
-
GenericDocumentType
public GenericDocumentType(java.lang.String name, java.lang.String fullName, java.lang.String normalizedName)Constructs GenericDocumentType with default parameters.- Parameters:
name- Local document type name.fullName- Unique global document type name prefixed with the document types of all containing documents.normalizedName- Normalized global document type name. Common document types appearing as child documents in different places will often have the same normalized type name.
-
-
Method Detail
-
getName
public java.lang.String getName()
Getter for name field. See constructor documentation for more information about the field.- Returns:
- name
-
getFullName
public java.lang.String getFullName()
Getter for fullName field. See constructor documentation for more information about the field.- Returns:
- fullName
-
getNormalizedName
public java.lang.String getNormalizedName()
Getter for normalizedName field. See constructor documentation for more information about the field.- Returns:
- normalizedName
-
getListIndex
public java.lang.Integer getListIndex()
Getter for listIndex field. See constructor documentation for more information about the field.- Returns:
- listIndex
-
-