Class ReadOperationResult
- java.lang.Object
-
- com.microsoft.azure.cognitiveservices.vision.computervision.models.ReadOperationResult
-
public class ReadOperationResult extends Object
OCR result of the read operation.
-
-
Constructor Summary
Constructors Constructor Description ReadOperationResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AnalyzeResults
analyzeResult()
Get the analyzeResult value.String
createdDateTime()
Get the createdDateTime value.String
lastUpdatedDateTime()
Get the lastUpdatedDateTime value.OperationStatusCodes
status()
Get the status value.ReadOperationResult
withAnalyzeResult(AnalyzeResults analyzeResult)
Set the analyzeResult value.ReadOperationResult
withCreatedDateTime(String createdDateTime)
Set the createdDateTime value.ReadOperationResult
withLastUpdatedDateTime(String lastUpdatedDateTime)
Set the lastUpdatedDateTime value.ReadOperationResult
withStatus(OperationStatusCodes status)
Set the status value.
-
-
-
Method Detail
-
status
public OperationStatusCodes status()
Get the status value.- Returns:
- the status value
-
withStatus
public ReadOperationResult withStatus(OperationStatusCodes status)
Set the status value.- Parameters:
status
- the status value to set- Returns:
- the ReadOperationResult object itself.
-
createdDateTime
public String createdDateTime()
Get the createdDateTime value.- Returns:
- the createdDateTime value
-
withCreatedDateTime
public ReadOperationResult withCreatedDateTime(String createdDateTime)
Set the createdDateTime value.- Parameters:
createdDateTime
- the createdDateTime value to set- Returns:
- the ReadOperationResult object itself.
-
lastUpdatedDateTime
public String lastUpdatedDateTime()
Get the lastUpdatedDateTime value.- Returns:
- the lastUpdatedDateTime value
-
withLastUpdatedDateTime
public ReadOperationResult withLastUpdatedDateTime(String lastUpdatedDateTime)
Set the lastUpdatedDateTime value.- Parameters:
lastUpdatedDateTime
- the lastUpdatedDateTime value to set- Returns:
- the ReadOperationResult object itself.
-
analyzeResult
public AnalyzeResults analyzeResult()
Get the analyzeResult value.- Returns:
- the analyzeResult value
-
withAnalyzeResult
public ReadOperationResult withAnalyzeResult(AnalyzeResults analyzeResult)
Set the analyzeResult value.- Parameters:
analyzeResult
- the analyzeResult value to set- Returns:
- the ReadOperationResult object itself.
-
-