JavaScript is disabled on your browser.
Skip navigation links

AWS SDK for Java 1.x API Reference - 1.12.795

We announced the upcoming end-of-support for AWS SDK for Java (v1). We recommend that you migrate to AWS SDK for Java v2. For dates, additional details, and information on how to migrate, please refer to the linked announcement.
com.amazonaws.services.codebuild.model

Class DescribeCodeCoveragesRequest

    • Constructor Detail

      • DescribeCodeCoveragesRequest

        public DescribeCodeCoveragesRequest()
    • Method Detail

      • setReportArn

        public void setReportArn(String reportArn)

        The ARN of the report for which test cases are returned.

        Parameters:
        reportArn - The ARN of the report for which test cases are returned.
      • getReportArn

        public String getReportArn()

        The ARN of the report for which test cases are returned.

        Returns:
        The ARN of the report for which test cases are returned.
      • withReportArn

        public DescribeCodeCoveragesRequest withReportArn(String reportArn)

        The ARN of the report for which test cases are returned.

        Parameters:
        reportArn - The ARN of the report for which test cases are returned.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • setNextToken

        public void setNextToken(String nextToken)

        The nextToken value returned from a previous call to DescribeCodeCoverages. This specifies the next item to return. To return the beginning of the list, exclude this parameter.

        Parameters:
        nextToken - The nextToken value returned from a previous call to DescribeCodeCoverages. This specifies the next item to return. To return the beginning of the list, exclude this parameter.
      • getNextToken

        public String getNextToken()

        The nextToken value returned from a previous call to DescribeCodeCoverages. This specifies the next item to return. To return the beginning of the list, exclude this parameter.

        Returns:
        The nextToken value returned from a previous call to DescribeCodeCoverages. This specifies the next item to return. To return the beginning of the list, exclude this parameter.
      • withNextToken

        public DescribeCodeCoveragesRequest withNextToken(String nextToken)

        The nextToken value returned from a previous call to DescribeCodeCoverages. This specifies the next item to return. To return the beginning of the list, exclude this parameter.

        Parameters:
        nextToken - The nextToken value returned from a previous call to DescribeCodeCoverages. This specifies the next item to return. To return the beginning of the list, exclude this parameter.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • setMaxResults

        public void setMaxResults(Integer maxResults)

        The maximum number of results to return.

        Parameters:
        maxResults - The maximum number of results to return.
      • getMaxResults

        public Integer getMaxResults()

        The maximum number of results to return.

        Returns:
        The maximum number of results to return.
      • withMaxResults

        public DescribeCodeCoveragesRequest withMaxResults(Integer maxResults)

        The maximum number of results to return.

        Parameters:
        maxResults - The maximum number of results to return.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • setSortOrder

        public void setSortOrder(String sortOrder)

        Specifies if the results are sorted in ascending or descending order.

        Parameters:
        sortOrder - Specifies if the results are sorted in ascending or descending order.
        See Also:
        SortOrderType
      • getSortOrder

        public String getSortOrder()

        Specifies if the results are sorted in ascending or descending order.

        Returns:
        Specifies if the results are sorted in ascending or descending order.
        See Also:
        SortOrderType
      • withSortOrder

        public DescribeCodeCoveragesRequest withSortOrder(String sortOrder)

        Specifies if the results are sorted in ascending or descending order.

        Parameters:
        sortOrder - Specifies if the results are sorted in ascending or descending order.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        SortOrderType
      • withSortOrder

        public DescribeCodeCoveragesRequest withSortOrder(SortOrderType sortOrder)

        Specifies if the results are sorted in ascending or descending order.

        Parameters:
        sortOrder - Specifies if the results are sorted in ascending or descending order.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        SortOrderType
      • setSortBy

        public void setSortBy(String sortBy)

        Specifies how the results are sorted. Possible values are:

        FILE_PATH

        The results are sorted by file path.

        LINE_COVERAGE_PERCENTAGE

        The results are sorted by the percentage of lines that are covered.

        Parameters:
        sortBy - Specifies how the results are sorted. Possible values are:

        FILE_PATH

        The results are sorted by file path.

        LINE_COVERAGE_PERCENTAGE

        The results are sorted by the percentage of lines that are covered.

        See Also:
        ReportCodeCoverageSortByType
      • getSortBy

        public String getSortBy()

        Specifies how the results are sorted. Possible values are:

        FILE_PATH

        The results are sorted by file path.

        LINE_COVERAGE_PERCENTAGE

        The results are sorted by the percentage of lines that are covered.

        Returns:
        Specifies how the results are sorted. Possible values are:

        FILE_PATH

        The results are sorted by file path.

        LINE_COVERAGE_PERCENTAGE

        The results are sorted by the percentage of lines that are covered.

        See Also:
        ReportCodeCoverageSortByType
      • withSortBy

        public DescribeCodeCoveragesRequest withSortBy(String sortBy)

        Specifies how the results are sorted. Possible values are:

        FILE_PATH

        The results are sorted by file path.

        LINE_COVERAGE_PERCENTAGE

        The results are sorted by the percentage of lines that are covered.

        Parameters:
        sortBy - Specifies how the results are sorted. Possible values are:

        FILE_PATH

        The results are sorted by file path.

        LINE_COVERAGE_PERCENTAGE

        The results are sorted by the percentage of lines that are covered.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        ReportCodeCoverageSortByType
      • withSortBy

        public DescribeCodeCoveragesRequest withSortBy(ReportCodeCoverageSortByType sortBy)

        Specifies how the results are sorted. Possible values are:

        FILE_PATH

        The results are sorted by file path.

        LINE_COVERAGE_PERCENTAGE

        The results are sorted by the percentage of lines that are covered.

        Parameters:
        sortBy - Specifies how the results are sorted. Possible values are:

        FILE_PATH

        The results are sorted by file path.

        LINE_COVERAGE_PERCENTAGE

        The results are sorted by the percentage of lines that are covered.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        ReportCodeCoverageSortByType
      • setMinLineCoveragePercentage

        public void setMinLineCoveragePercentage(Double minLineCoveragePercentage)

        The minimum line coverage percentage to report.

        Parameters:
        minLineCoveragePercentage - The minimum line coverage percentage to report.
      • getMinLineCoveragePercentage

        public Double getMinLineCoveragePercentage()

        The minimum line coverage percentage to report.

        Returns:
        The minimum line coverage percentage to report.
      • withMinLineCoveragePercentage

        public DescribeCodeCoveragesRequest withMinLineCoveragePercentage(Double minLineCoveragePercentage)

        The minimum line coverage percentage to report.

        Parameters:
        minLineCoveragePercentage - The minimum line coverage percentage to report.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • setMaxLineCoveragePercentage

        public void setMaxLineCoveragePercentage(Double maxLineCoveragePercentage)

        The maximum line coverage percentage to report.

        Parameters:
        maxLineCoveragePercentage - The maximum line coverage percentage to report.
      • getMaxLineCoveragePercentage

        public Double getMaxLineCoveragePercentage()

        The maximum line coverage percentage to report.

        Returns:
        The maximum line coverage percentage to report.
      • withMaxLineCoveragePercentage

        public DescribeCodeCoveragesRequest withMaxLineCoveragePercentage(Double maxLineCoveragePercentage)

        The maximum line coverage percentage to report.

        Parameters:
        maxLineCoveragePercentage - The maximum line coverage percentage to report.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • toString

        public String toString()
        Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
        Overrides:
        toString in class Object
        Returns:
        A string representation of this object.
        See Also:
        Object.toString()
Skip navigation links

AltStyle によって変換されたページ (->オリジナル) /