Class Document
java.lang.Object
com.azure.ai.documentintelligence.models.Document
- All Implemented Interfaces:
com.azure.json.JsonSerializable<Document>
An object describing the location and semantic content of a document.
-
Method Summary
Modifier and TypeMethodDescriptionstatic Document
fromJson
(com.azure.json.JsonReader jsonReader) Reads an instance of Document from the JsonReader.Get the boundingRegions property: Bounding regions covering the document.double
Get the confidence property: Confidence of correctly extracting the document.Get the docType property: Document type.Get the fields property: Dictionary of named field values.getSpans()
Get the spans property: Location of the document in the reading order concatenated content.com.azure.json.JsonWriter
toJson
(com.azure.json.JsonWriter jsonWriter) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.azure.json.JsonSerializable
toJson, toJson, toJsonBytes, toJsonString
-
Method Details
-
getDocType
Get the docType property: Document type.- Returns:
- the docType value.
-
getBoundingRegions
Get the boundingRegions property: Bounding regions covering the document.- Returns:
- the boundingRegions value.
-
getSpans
Get the spans property: Location of the document in the reading order concatenated content.- Returns:
- the spans value.
-
getFields
Get the fields property: Dictionary of named field values.- Returns:
- the fields value.
-
getConfidence
public double getConfidence()Get the confidence property: Confidence of correctly extracting the document.- Returns:
- the confidence value.
-
toJson
- Specified by:
toJson
in interfacecom.azure.json.JsonSerializable<Document>
- Throws:
IOException
-
fromJson
Reads an instance of Document from the JsonReader.- Parameters:
jsonReader
- The JsonReader being read.- Returns:
- An instance of Document if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.
- Throws:
IllegalStateException
- If the deserialized JSON object was missing any required properties.IOException
- If an error occurs while reading the Document.
-