Class CompletionStats.Builder
-
- All Implemented Interfaces:
public abstract class CompletionStats.BuilderBuilder for CompletionStats.
-
-
Constructor Summary
Constructors Constructor Description CompletionStats.Builder()
-
Method Summary
Modifier and Type Method Description abstract CompletionStats.BuilderfailedCount(Long failedCount)Setter for failedCount. CompletionStats.BuilderclearFailedCount()Clears the value of failedCount field. abstract CompletionStats.BuilderincompleteCount(Long incompleteCount)Setter for incompleteCount. CompletionStats.BuilderclearIncompleteCount()Clears the value of incompleteCount field. abstract CompletionStats.BuildersuccessfulCount(Long successfulCount)Setter for successfulCount. CompletionStats.BuilderclearSuccessfulCount()Clears the value of successfulCount field. abstract CompletionStats.BuildersuccessfulForecastPointCount(Long successfulForecastPointCount)Setter for successfulForecastPointCount. CompletionStats.BuilderclearSuccessfulForecastPointCount()Clears the value of successfulForecastPointCount field. abstract CompletionStatsbuild()-
-
Method Detail
-
failedCount
abstract CompletionStats.Builder failedCount(Long failedCount)
Setter for failedCount.
failedCount: Output only. The number of entities for which any error was encountered.
-
clearFailedCount
@CanIgnoreReturnValue() CompletionStats.Builder clearFailedCount()
Clears the value of failedCount field.
-
incompleteCount
abstract CompletionStats.Builder incompleteCount(Long incompleteCount)
Setter for incompleteCount.
incompleteCount: Output only. In cases when enough errors are encountered a job, pipeline, or operation may be failed as a whole. Below is the number of entities for which the processing had not been finished (either in successful or failed state). Set to -1 if the number is unknown (for example, the operation failed before the total entity number could be collected).
-
clearIncompleteCount
@CanIgnoreReturnValue() CompletionStats.Builder clearIncompleteCount()
Clears the value of incompleteCount field.
-
successfulCount
abstract CompletionStats.Builder successfulCount(Long successfulCount)
Setter for successfulCount.
successfulCount: Output only. The number of entities that had been processed successfully.
-
clearSuccessfulCount
@CanIgnoreReturnValue() CompletionStats.Builder clearSuccessfulCount()
Clears the value of successfulCount field.
-
successfulForecastPointCount
abstract CompletionStats.Builder successfulForecastPointCount(Long successfulForecastPointCount)
Setter for successfulForecastPointCount.
successfulForecastPointCount: Output only. The number of the successful forecast points that are generated by the forecasting model. This is ONLY used by the forecasting batch prediction.
-
clearSuccessfulForecastPointCount
@CanIgnoreReturnValue() CompletionStats.Builder clearSuccessfulForecastPointCount()
Clears the value of successfulForecastPointCount field.
-
build
abstract CompletionStats build()
-
-
-
-