All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awssdk.services.codegurureviewer.model.ListCodeReviewsRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for CodeGuru Reviewer module holds the client classes that are used for communicating with CodeGuru Reviewer.

There is a newer version: 2.29.15
Show newest version
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */

package software.amazon.awssdk.services.codegurureviewer.model;

import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Consumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.awscore.AwsRequestOverrideConfiguration;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.ListTrait;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.core.util.DefaultSdkAutoConstructList;
import software.amazon.awssdk.core.util.SdkAutoConstructList;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 */
@Generated("software.amazon.awssdk:codegen")
public final class ListCodeReviewsRequest extends CodeGuruReviewerRequest implements
        ToCopyableBuilder {
    private static final SdkField> PROVIDER_TYPES_FIELD = SdkField
            .> builder(MarshallingType.LIST)
            .memberName("ProviderTypes")
            .getter(getter(ListCodeReviewsRequest::providerTypesAsStrings))
            .setter(setter(Builder::providerTypesWithStrings))
            .traits(LocationTrait.builder().location(MarshallLocation.QUERY_PARAM).locationName("ProviderTypes").build(),
                    ListTrait
                            .builder()
                            .memberLocationName(null)
                            .memberFieldInfo(
                                    SdkField. builder(MarshallingType.STRING)
                                            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
                                                    .locationName("member").build()).build()).build()).build();

    private static final SdkField> STATES_FIELD = SdkField
            .> builder(MarshallingType.LIST)
            .memberName("States")
            .getter(getter(ListCodeReviewsRequest::statesAsStrings))
            .setter(setter(Builder::statesWithStrings))
            .traits(LocationTrait.builder().location(MarshallLocation.QUERY_PARAM).locationName("States").build(),
                    ListTrait
                            .builder()
                            .memberLocationName(null)
                            .memberFieldInfo(
                                    SdkField. builder(MarshallingType.STRING)
                                            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
                                                    .locationName("member").build()).build()).build()).build();

    private static final SdkField> REPOSITORY_NAMES_FIELD = SdkField
            .> builder(MarshallingType.LIST)
            .memberName("RepositoryNames")
            .getter(getter(ListCodeReviewsRequest::repositoryNames))
            .setter(setter(Builder::repositoryNames))
            .traits(LocationTrait.builder().location(MarshallLocation.QUERY_PARAM).locationName("RepositoryNames").build(),
                    ListTrait
                            .builder()
                            .memberLocationName(null)
                            .memberFieldInfo(
                                    SdkField. builder(MarshallingType.STRING)
                                            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
                                                    .locationName("member").build()).build()).build()).build();

    private static final SdkField TYPE_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Type")
            .getter(getter(ListCodeReviewsRequest::typeAsString)).setter(setter(Builder::type))
            .traits(LocationTrait.builder().location(MarshallLocation.QUERY_PARAM).locationName("Type").build()).build();

    private static final SdkField MAX_RESULTS_FIELD = SdkField. builder(MarshallingType.INTEGER)
            .memberName("MaxResults").getter(getter(ListCodeReviewsRequest::maxResults)).setter(setter(Builder::maxResults))
            .traits(LocationTrait.builder().location(MarshallLocation.QUERY_PARAM).locationName("MaxResults").build()).build();

    private static final SdkField NEXT_TOKEN_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("NextToken").getter(getter(ListCodeReviewsRequest::nextToken)).setter(setter(Builder::nextToken))
            .traits(LocationTrait.builder().location(MarshallLocation.QUERY_PARAM).locationName("NextToken").build()).build();

    private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(PROVIDER_TYPES_FIELD,
            STATES_FIELD, REPOSITORY_NAMES_FIELD, TYPE_FIELD, MAX_RESULTS_FIELD, NEXT_TOKEN_FIELD));

    private final List providerTypes;

    private final List states;

    private final List repositoryNames;

    private final String type;

    private final Integer maxResults;

    private final String nextToken;

    private ListCodeReviewsRequest(BuilderImpl builder) {
        super(builder);
        this.providerTypes = builder.providerTypes;
        this.states = builder.states;
        this.repositoryNames = builder.repositoryNames;
        this.type = builder.type;
        this.maxResults = builder.maxResults;
        this.nextToken = builder.nextToken;
    }

    /**
     * 

* List of provider types for filtering that needs to be applied before displaying the result. For example, * providerTypes=[GitHub] lists code reviews from GitHub. *

*

* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. *

*

* This method will never return null. If you would like to know whether the service returned this field (so that * you can differentiate between null and empty), you can use the {@link #hasProviderTypes} method. *

* * @return List of provider types for filtering that needs to be applied before displaying the result. For example, * providerTypes=[GitHub] lists code reviews from GitHub. */ public final List providerTypes() { return ProviderTypesCopier.copyStringToEnum(providerTypes); } /** * For responses, this returns true if the service returned a value for the ProviderTypes property. This DOES NOT * check that the value is non-empty (for which, you should check the {@code isEmpty()} method on the property). * This is useful because the SDK will never return a null collection or map, but you may need to differentiate * between the service returning nothing (or null) and the service returning an empty collection or map. For * requests, this returns true if a value for the property was specified in the request builder, and false if a * value was not specified. */ public final boolean hasProviderTypes() { return providerTypes != null && !(providerTypes instanceof SdkAutoConstructList); } /** *

* List of provider types for filtering that needs to be applied before displaying the result. For example, * providerTypes=[GitHub] lists code reviews from GitHub. *

*

* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. *

*

* This method will never return null. If you would like to know whether the service returned this field (so that * you can differentiate between null and empty), you can use the {@link #hasProviderTypes} method. *

* * @return List of provider types for filtering that needs to be applied before displaying the result. For example, * providerTypes=[GitHub] lists code reviews from GitHub. */ public final List providerTypesAsStrings() { return providerTypes; } /** *

* List of states for filtering that needs to be applied before displaying the result. For example, * states=[Pending] lists code reviews in the Pending state. *

*

* The valid code review states are: *

*
    *
  • *

    * Completed: The code review is complete. *

    *
  • *
  • *

    * Pending: The code review started and has not completed or failed. *

    *
  • *
  • *

    * Failed: The code review failed. *

    *
  • *
  • *

    * Deleting: The code review is being deleted. *

    *
  • *
*

* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. *

*

* This method will never return null. If you would like to know whether the service returned this field (so that * you can differentiate between null and empty), you can use the {@link #hasStates} method. *

* * @return List of states for filtering that needs to be applied before displaying the result. For example, * states=[Pending] lists code reviews in the Pending state.

*

* The valid code review states are: *

*
    *
  • *

    * Completed: The code review is complete. *

    *
  • *
  • *

    * Pending: The code review started and has not completed or failed. *

    *
  • *
  • *

    * Failed: The code review failed. *

    *
  • *
  • *

    * Deleting: The code review is being deleted. *

    *
  • */ public final List states() { return JobStatesCopier.copyStringToEnum(states); } /** * For responses, this returns true if the service returned a value for the States property. This DOES NOT check * that the value is non-empty (for which, you should check the {@code isEmpty()} method on the property). This is * useful because the SDK will never return a null collection or map, but you may need to differentiate between the * service returning nothing (or null) and the service returning an empty collection or map. For requests, this * returns true if a value for the property was specified in the request builder, and false if a value was not * specified. */ public final boolean hasStates() { return states != null && !(states instanceof SdkAutoConstructList); } /** *

    * List of states for filtering that needs to be applied before displaying the result. For example, * states=[Pending] lists code reviews in the Pending state. *

    *

    * The valid code review states are: *

    *
      *
    • *

      * Completed: The code review is complete. *

      *
    • *
    • *

      * Pending: The code review started and has not completed or failed. *

      *
    • *
    • *

      * Failed: The code review failed. *

      *
    • *
    • *

      * Deleting: The code review is being deleted. *

      *
    • *
    *

    * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. *

    *

    * This method will never return null. If you would like to know whether the service returned this field (so that * you can differentiate between null and empty), you can use the {@link #hasStates} method. *

    * * @return List of states for filtering that needs to be applied before displaying the result. For example, * states=[Pending] lists code reviews in the Pending state.

    *

    * The valid code review states are: *

    *
      *
    • *

      * Completed: The code review is complete. *

      *
    • *
    • *

      * Pending: The code review started and has not completed or failed. *

      *
    • *
    • *

      * Failed: The code review failed. *

      *
    • *
    • *

      * Deleting: The code review is being deleted. *

      *
    • */ public final List statesAsStrings() { return states; } /** * For responses, this returns true if the service returned a value for the RepositoryNames property. This DOES NOT * check that the value is non-empty (for which, you should check the {@code isEmpty()} method on the property). * This is useful because the SDK will never return a null collection or map, but you may need to differentiate * between the service returning nothing (or null) and the service returning an empty collection or map. For * requests, this returns true if a value for the property was specified in the request builder, and false if a * value was not specified. */ public final boolean hasRepositoryNames() { return repositoryNames != null && !(repositoryNames instanceof SdkAutoConstructList); } /** *

      * List of repository names for filtering that needs to be applied before displaying the result. *

      *

      * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. *

      *

      * This method will never return null. If you would like to know whether the service returned this field (so that * you can differentiate between null and empty), you can use the {@link #hasRepositoryNames} method. *

      * * @return List of repository names for filtering that needs to be applied before displaying the result. */ public final List repositoryNames() { return repositoryNames; } /** *

      * The type of code reviews to list in the response. *

      *

      * If the service returns an enum value that is not available in the current SDK version, {@link #type} will return * {@link Type#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #typeAsString}. *

      * * @return The type of code reviews to list in the response. * @see Type */ public final Type type() { return Type.fromValue(type); } /** *

      * The type of code reviews to list in the response. *

      *

      * If the service returns an enum value that is not available in the current SDK version, {@link #type} will return * {@link Type#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #typeAsString}. *

      * * @return The type of code reviews to list in the response. * @see Type */ public final String typeAsString() { return type; } /** *

      * The maximum number of results that are returned per call. The default is 100. *

      * * @return The maximum number of results that are returned per call. The default is 100. */ public final Integer maxResults() { return maxResults; } /** *

      * If nextToken is returned, there are more results available. The value of nextToken is a * unique pagination token for each page. Make the call again using the returned token to retrieve the next page. * Keep all other arguments unchanged. *

      * * @return If nextToken is returned, there are more results available. The value of * nextToken is a unique pagination token for each page. Make the call again using the returned * token to retrieve the next page. Keep all other arguments unchanged. */ public final String nextToken() { return nextToken; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public final int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + super.hashCode(); hashCode = 31 * hashCode + Objects.hashCode(hasProviderTypes() ? providerTypesAsStrings() : null); hashCode = 31 * hashCode + Objects.hashCode(hasStates() ? statesAsStrings() : null); hashCode = 31 * hashCode + Objects.hashCode(hasRepositoryNames() ? repositoryNames() : null); hashCode = 31 * hashCode + Objects.hashCode(typeAsString()); hashCode = 31 * hashCode + Objects.hashCode(maxResults()); hashCode = 31 * hashCode + Objects.hashCode(nextToken()); return hashCode; } @Override public final boolean equals(Object obj) { return super.equals(obj) && equalsBySdkFields(obj); } @Override public final boolean equalsBySdkFields(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof ListCodeReviewsRequest)) { return false; } ListCodeReviewsRequest other = (ListCodeReviewsRequest) obj; return hasProviderTypes() == other.hasProviderTypes() && Objects.equals(providerTypesAsStrings(), other.providerTypesAsStrings()) && hasStates() == other.hasStates() && Objects.equals(statesAsStrings(), other.statesAsStrings()) && hasRepositoryNames() == other.hasRepositoryNames() && Objects.equals(repositoryNames(), other.repositoryNames()) && Objects.equals(typeAsString(), other.typeAsString()) && Objects.equals(maxResults(), other.maxResults()) && Objects.equals(nextToken(), other.nextToken()); } /** * 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. */ @Override public final String toString() { return ToString.builder("ListCodeReviewsRequest") .add("ProviderTypes", hasProviderTypes() ? providerTypesAsStrings() : null) .add("States", hasStates() ? statesAsStrings() : null) .add("RepositoryNames", hasRepositoryNames() ? repositoryNames() : null).add("Type", typeAsString()) .add("MaxResults", maxResults()).add("NextToken", nextToken()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "ProviderTypes": return Optional.ofNullable(clazz.cast(providerTypesAsStrings())); case "States": return Optional.ofNullable(clazz.cast(statesAsStrings())); case "RepositoryNames": return Optional.ofNullable(clazz.cast(repositoryNames())); case "Type": return Optional.ofNullable(clazz.cast(typeAsString())); case "MaxResults": return Optional.ofNullable(clazz.cast(maxResults())); case "NextToken": return Optional.ofNullable(clazz.cast(nextToken())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((ListCodeReviewsRequest) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends CodeGuruReviewerRequest.Builder, SdkPojo, CopyableBuilder { /** *

      * List of provider types for filtering that needs to be applied before displaying the result. For example, * providerTypes=[GitHub] lists code reviews from GitHub. *

      * * @param providerTypes * List of provider types for filtering that needs to be applied before displaying the result. For * example, providerTypes=[GitHub] lists code reviews from GitHub. * @return Returns a reference to this object so that method calls can be chained together. */ Builder providerTypesWithStrings(Collection providerTypes); /** *

      * List of provider types for filtering that needs to be applied before displaying the result. For example, * providerTypes=[GitHub] lists code reviews from GitHub. *

      * * @param providerTypes * List of provider types for filtering that needs to be applied before displaying the result. For * example, providerTypes=[GitHub] lists code reviews from GitHub. * @return Returns a reference to this object so that method calls can be chained together. */ Builder providerTypesWithStrings(String... providerTypes); /** *

      * List of provider types for filtering that needs to be applied before displaying the result. For example, * providerTypes=[GitHub] lists code reviews from GitHub. *

      * * @param providerTypes * List of provider types for filtering that needs to be applied before displaying the result. For * example, providerTypes=[GitHub] lists code reviews from GitHub. * @return Returns a reference to this object so that method calls can be chained together. */ Builder providerTypes(Collection providerTypes); /** *

      * List of provider types for filtering that needs to be applied before displaying the result. For example, * providerTypes=[GitHub] lists code reviews from GitHub. *

      * * @param providerTypes * List of provider types for filtering that needs to be applied before displaying the result. For * example, providerTypes=[GitHub] lists code reviews from GitHub. * @return Returns a reference to this object so that method calls can be chained together. */ Builder providerTypes(ProviderType... providerTypes); /** *

      * List of states for filtering that needs to be applied before displaying the result. For example, * states=[Pending] lists code reviews in the Pending state. *

      *

      * The valid code review states are: *

      *
        *
      • *

        * Completed: The code review is complete. *

        *
      • *
      • *

        * Pending: The code review started and has not completed or failed. *

        *
      • *
      • *

        * Failed: The code review failed. *

        *
      • *
      • *

        * Deleting: The code review is being deleted. *

        *
      • *
      * * @param states * List of states for filtering that needs to be applied before displaying the result. For example, * states=[Pending] lists code reviews in the Pending state.

      *

      * The valid code review states are: *

      *
        *
      • *

        * Completed: The code review is complete. *

        *
      • *
      • *

        * Pending: The code review started and has not completed or failed. *

        *
      • *
      • *

        * Failed: The code review failed. *

        *
      • *
      • *

        * Deleting: The code review is being deleted. *

        *
      • * @return Returns a reference to this object so that method calls can be chained together. */ Builder statesWithStrings(Collection states); /** *

        * List of states for filtering that needs to be applied before displaying the result. For example, * states=[Pending] lists code reviews in the Pending state. *

        *

        * The valid code review states are: *

        *
          *
        • *

          * Completed: The code review is complete. *

          *
        • *
        • *

          * Pending: The code review started and has not completed or failed. *

          *
        • *
        • *

          * Failed: The code review failed. *

          *
        • *
        • *

          * Deleting: The code review is being deleted. *

          *
        • *
        * * @param states * List of states for filtering that needs to be applied before displaying the result. For example, * states=[Pending] lists code reviews in the Pending state.

        *

        * The valid code review states are: *

        *
          *
        • *

          * Completed: The code review is complete. *

          *
        • *
        • *

          * Pending: The code review started and has not completed or failed. *

          *
        • *
        • *

          * Failed: The code review failed. *

          *
        • *
        • *

          * Deleting: The code review is being deleted. *

          *
        • * @return Returns a reference to this object so that method calls can be chained together. */ Builder statesWithStrings(String... states); /** *

          * List of states for filtering that needs to be applied before displaying the result. For example, * states=[Pending] lists code reviews in the Pending state. *

          *

          * The valid code review states are: *

          *
            *
          • *

            * Completed: The code review is complete. *

            *
          • *
          • *

            * Pending: The code review started and has not completed or failed. *

            *
          • *
          • *

            * Failed: The code review failed. *

            *
          • *
          • *

            * Deleting: The code review is being deleted. *

            *
          • *
          * * @param states * List of states for filtering that needs to be applied before displaying the result. For example, * states=[Pending] lists code reviews in the Pending state.

          *

          * The valid code review states are: *

          *
            *
          • *

            * Completed: The code review is complete. *

            *
          • *
          • *

            * Pending: The code review started and has not completed or failed. *

            *
          • *
          • *

            * Failed: The code review failed. *

            *
          • *
          • *

            * Deleting: The code review is being deleted. *

            *
          • * @return Returns a reference to this object so that method calls can be chained together. */ Builder states(Collection states); /** *

            * List of states for filtering that needs to be applied before displaying the result. For example, * states=[Pending] lists code reviews in the Pending state. *

            *

            * The valid code review states are: *

            *
              *
            • *

              * Completed: The code review is complete. *

              *
            • *
            • *

              * Pending: The code review started and has not completed or failed. *

              *
            • *
            • *

              * Failed: The code review failed. *

              *
            • *
            • *

              * Deleting: The code review is being deleted. *

              *
            • *
            * * @param states * List of states for filtering that needs to be applied before displaying the result. For example, * states=[Pending] lists code reviews in the Pending state.

            *

            * The valid code review states are: *

            *
              *
            • *

              * Completed: The code review is complete. *

              *
            • *
            • *

              * Pending: The code review started and has not completed or failed. *

              *
            • *
            • *

              * Failed: The code review failed. *

              *
            • *
            • *

              * Deleting: The code review is being deleted. *

              *
            • * @return Returns a reference to this object so that method calls can be chained together. */ Builder states(JobState... states); /** *

              * List of repository names for filtering that needs to be applied before displaying the result. *

              * * @param repositoryNames * List of repository names for filtering that needs to be applied before displaying the result. * @return Returns a reference to this object so that method calls can be chained together. */ Builder repositoryNames(Collection repositoryNames); /** *

              * List of repository names for filtering that needs to be applied before displaying the result. *

              * * @param repositoryNames * List of repository names for filtering that needs to be applied before displaying the result. * @return Returns a reference to this object so that method calls can be chained together. */ Builder repositoryNames(String... repositoryNames); /** *

              * The type of code reviews to list in the response. *

              * * @param type * The type of code reviews to list in the response. * @see Type * @return Returns a reference to this object so that method calls can be chained together. * @see Type */ Builder type(String type); /** *

              * The type of code reviews to list in the response. *

              * * @param type * The type of code reviews to list in the response. * @see Type * @return Returns a reference to this object so that method calls can be chained together. * @see Type */ Builder type(Type type); /** *

              * The maximum number of results that are returned per call. The default is 100. *

              * * @param maxResults * The maximum number of results that are returned per call. The default is 100. * @return Returns a reference to this object so that method calls can be chained together. */ Builder maxResults(Integer maxResults); /** *

              * If nextToken is returned, there are more results available. The value of nextToken * is a unique pagination token for each page. Make the call again using the returned token to retrieve the next * page. Keep all other arguments unchanged. *

              * * @param nextToken * If nextToken is returned, there are more results available. The value of * nextToken is a unique pagination token for each page. Make the call again using the * returned token to retrieve the next page. Keep all other arguments unchanged. * @return Returns a reference to this object so that method calls can be chained together. */ Builder nextToken(String nextToken); @Override Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration); @Override Builder overrideConfiguration(Consumer builderConsumer); } static final class BuilderImpl extends CodeGuruReviewerRequest.BuilderImpl implements Builder { private List providerTypes = DefaultSdkAutoConstructList.getInstance(); private List states = DefaultSdkAutoConstructList.getInstance(); private List repositoryNames = DefaultSdkAutoConstructList.getInstance(); private String type; private Integer maxResults; private String nextToken; private BuilderImpl() { } private BuilderImpl(ListCodeReviewsRequest model) { super(model); providerTypesWithStrings(model.providerTypes); statesWithStrings(model.states); repositoryNames(model.repositoryNames); type(model.type); maxResults(model.maxResults); nextToken(model.nextToken); } public final Collection getProviderTypes() { if (providerTypes instanceof SdkAutoConstructList) { return null; } return providerTypes; } public final void setProviderTypes(Collection providerTypes) { this.providerTypes = ProviderTypesCopier.copy(providerTypes); } @Override public final Builder providerTypesWithStrings(Collection providerTypes) { this.providerTypes = ProviderTypesCopier.copy(providerTypes); return this; } @Override @SafeVarargs public final Builder providerTypesWithStrings(String... providerTypes) { providerTypesWithStrings(Arrays.asList(providerTypes)); return this; } @Override public final Builder providerTypes(Collection providerTypes) { this.providerTypes = ProviderTypesCopier.copyEnumToString(providerTypes); return this; } @Override @SafeVarargs public final Builder providerTypes(ProviderType... providerTypes) { providerTypes(Arrays.asList(providerTypes)); return this; } public final Collection getStates() { if (states instanceof SdkAutoConstructList) { return null; } return states; } public final void setStates(Collection states) { this.states = JobStatesCopier.copy(states); } @Override public final Builder statesWithStrings(Collection states) { this.states = JobStatesCopier.copy(states); return this; } @Override @SafeVarargs public final Builder statesWithStrings(String... states) { statesWithStrings(Arrays.asList(states)); return this; } @Override public final Builder states(Collection states) { this.states = JobStatesCopier.copyEnumToString(states); return this; } @Override @SafeVarargs public final Builder states(JobState... states) { states(Arrays.asList(states)); return this; } public final Collection getRepositoryNames() { if (repositoryNames instanceof SdkAutoConstructList) { return null; } return repositoryNames; } public final void setRepositoryNames(Collection repositoryNames) { this.repositoryNames = RepositoryNamesCopier.copy(repositoryNames); } @Override public final Builder repositoryNames(Collection repositoryNames) { this.repositoryNames = RepositoryNamesCopier.copy(repositoryNames); return this; } @Override @SafeVarargs public final Builder repositoryNames(String... repositoryNames) { repositoryNames(Arrays.asList(repositoryNames)); return this; } public final String getType() { return type; } public final void setType(String type) { this.type = type; } @Override public final Builder type(String type) { this.type = type; return this; } @Override public final Builder type(Type type) { this.type(type == null ? null : type.toString()); return this; } public final Integer getMaxResults() { return maxResults; } public final void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } @Override public final Builder maxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public final String getNextToken() { return nextToken; } public final void setNextToken(String nextToken) { this.nextToken = nextToken; } @Override public final Builder nextToken(String nextToken) { this.nextToken = nextToken; return this; } @Override public Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) { super.overrideConfiguration(overrideConfiguration); return this; } @Override public Builder overrideConfiguration(Consumer builderConsumer) { super.overrideConfiguration(builderConsumer); return this; } @Override public ListCodeReviewsRequest build() { return new ListCodeReviewsRequest(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy