IntermediateResult
The IntermediateResult class represents a container containing a collection of IntermediateResultUnit objects.
Definition
Package: com.dynamsoft.core.intermediate_results
public class IntermediateResult
Methods
| Method | Description |
|---|---|
getCount |
Gets the count of IntermediateResultUnit objects in the collection. |
getIntermediateResultUnit |
Gets the IntermediateResultUnit object at the specified index. |
getIntermediateResultUnits |
Gets all IntermediateResultUnit objects in the collection. |
getCount
Gets the count of IntermediateResultUnit objects in the collection.
public int getCount()
Return value
Returns the count of IntermediateResultUnit objects in the collection.
getIntermediateResultUnit
Gets the IntermediateResultUnit object at the specified index.
public IntermediateResultUnit getIntermediateResultUnit(int index)
Parameters
index The index of the IntermediateResultUnit object to retrieve.
Return value
Returns the IntermediateResultUnit object at the specified index.
See Also
getIntermediateResultUnits
Gets all IntermediateResultUnit objects in the collection.
public IntermediateResultUnit[] getIntermediateResultUnits()
Return value
Returns all IntermediateResultUnit objects in the collection.
See Also