Class RunCreateResponse.PerTestingCriteriaResult.Builder
-
- All Implemented Interfaces:
public final class RunCreateResponse.PerTestingCriteriaResult.Builder
A builder for PerTestingCriteriaResult.
-
-
Method Summary
-
-
Method Detail
-
failed
final RunCreateResponse.PerTestingCriteriaResult.Builder failed(Long failed)
Number of tests failed for this criteria.
-
failed
final RunCreateResponse.PerTestingCriteriaResult.Builder failed(JsonField<Long> failed)
Sets Builder.failed to an arbitrary JSON value.
You should usually call Builder.failed with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
passed
final RunCreateResponse.PerTestingCriteriaResult.Builder passed(Long passed)
Number of tests passed for this criteria.
-
passed
final RunCreateResponse.PerTestingCriteriaResult.Builder passed(JsonField<Long> passed)
Sets Builder.passed to an arbitrary JSON value.
You should usually call Builder.passed with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
testingCriteria
final RunCreateResponse.PerTestingCriteriaResult.Builder testingCriteria(String testingCriteria)
A description of the testing criteria.
-
testingCriteria
final RunCreateResponse.PerTestingCriteriaResult.Builder testingCriteria(JsonField<String> testingCriteria)
Sets Builder.testingCriteria to an arbitrary JSON value.
You should usually call Builder.testingCriteria with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final RunCreateResponse.PerTestingCriteriaResult.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final RunCreateResponse.PerTestingCriteriaResult.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final RunCreateResponse.PerTestingCriteriaResult.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final RunCreateResponse.PerTestingCriteriaResult.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final RunCreateResponse.PerTestingCriteriaResult.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final RunCreateResponse.PerTestingCriteriaResult build()
Returns an immutable instance of PerTestingCriteriaResult.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.failed() .passed() .testingCriteria()
-
-
-
-