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

com.gettyimages.api.Search.SearchImagesCreative Maven / Gradle / Ivy

There is a newer version: 3.1.9
Show newest version
package com.gettyimages.api.Search;

import com.gettyimages.api.AbstractApiRequest;
import com.gettyimages.api.Constants;
import com.gettyimages.api.Credentials;
import com.gettyimages.api.Filters.*;
import com.gettyimages.api.SdkException;

import java.util.EnumSet;

public class SearchImagesCreative extends AbstractApiRequest {

    private SearchImagesCreative(Credentials credentials, String baseUrl) {
        super(credentials, baseUrl);
    }

    public static SearchImagesCreative GetInstance(Credentials credentials, String baseUrl) {
        return new SearchImagesCreative(credentials, baseUrl);
    }


    public String executeAsync() throws SdkException {
        method = "GET";
        path = "/search/images/creative";

        return super.executeAsync();
    }

    public SearchImagesCreative withAcceptLanguage(String value)
    {
        headers.put(Constants.AcceptLanguageString, value);
        return this;
    }

    public SearchImagesCreative withAgeOfPeople(EnumSet values)
    {
        addAgeOfPeople(values);
        return this;
    }

    public SearchImagesCreative withArtists(Iterable values)
    {
        addArtists(values);
        return this;
    }

    public SearchImagesCreative withCollectionCodes(Iterable values)
    {
        addCollectionCodes(values);
        return this;
    }

    public SearchImagesCreative withCollectionFilterType(CollectionFilter value)
    {
        queryParams.put(Constants.CollectionsFilterTypeParameterName, value);
        return this;
    }

    public SearchImagesCreative withColor(String value)
    {
        queryParams.put(Constants.ColorParameterName, value);
        return this;
    }

    public SearchImagesCreative withCompositions(EnumSet values)
    {
        addCompositions(values);
        return this;
    }

    public SearchImagesCreative withEmbedContentOnly(Boolean value)
    {
        queryParams.put(Constants.EmbedContentOnlyParameterName, value);
        return this;
    }

    public SearchImagesCreative withEthnicity(EnumSet values)
    {
        addEthnicity(values);
        return this;
    }

    public SearchImagesCreative withExcludeNudity(Boolean value)
    {
        queryParams.put(Constants.ExcludeNudityParameterName, value);
        return this;
    }

    public SearchImagesCreative withResponseFields(Iterable values)
    {
        addResponseFields(values);
        return this;
    }

    public SearchImagesCreative withFileTypes(EnumSet values)
    {
        addFileTypes(values);
        return this;
    }

    public SearchImagesCreative withGraphicalStyles(EnumSet values)
    {
        addGraphicalStyles(values);
        return this;
    }

    public SearchImagesCreative withKeywordIds(Iterable values)
    {
        addKeywordIds(values);
        return this;
    }

    public SearchImagesCreative withMinimumSize(MinimumSize value)
    {
        queryParams.put(Constants.MinimumSizeParameterName, value);
        return this;
    }

    public SearchImagesCreative withNumberOfPeople(EnumSet values)
    {
        addNumberOfPeople(values);
        return this;
    }

    public SearchImagesCreative withOrientations(EnumSet values)
    {
        addOrientations(values);
        return this;
    }

    public SearchImagesCreative withPage(Integer value)
    {
        queryParams.put(Constants.PageParameterName, value);
        return this;
    }

    public SearchImagesCreative withPageSize(Integer value)
    {
        queryParams.put(Constants.PageSizeString, value);
        return this;
    }

    public SearchImagesCreative withPhrase(String value)
    {
        queryParams.put(Constants.PhraseParameterName, value);
        return this;
    }

    public SearchImagesCreative withPrestigeContentOnly(Boolean value)
    {
        queryParams.put(Constants.PrestigeContentOnlyParameterName, value);
        return this;
    }

    public SearchImagesCreative withProductTypes(EnumSet values)
    {
        addProductTypes(values);
        return this;
    }

    public SearchImagesCreative withSortOrder(SortOrder value)
    {
        queryParams.put(Constants.SortOrderParameterName, value);
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy