com.wrapper.spotify.requests.data.search.simplified.SearchTracksRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-web-api-java Show documentation
Show all versions of spotify-web-api-java Show documentation
A Java client for Spotify's Web API
package com.wrapper.spotify.requests.data.search.simplified;
import com.neovisionaries.i18n.CountryCode;
import com.wrapper.spotify.exceptions.SpotifyWebApiException;
import com.wrapper.spotify.model_objects.specification.Paging;
import com.wrapper.spotify.model_objects.specification.Track;
import com.wrapper.spotify.requests.data.AbstractDataRequest;
import java.io.IOException;
/**
* Get Spotify catalog information about tracks that match a keyword string.
*/
public class SearchTracksRequest extends AbstractDataRequest {
/**
* The private {@link SearchTracksRequest} constructor.
*
* @param builder A {@link SearchTracksRequest.Builder}.
*/
private SearchTracksRequest(final Builder builder) {
super(builder);
}
/**
* Search for playlists.
*
* @return A {@link Track} paging.
* @throws IOException In case of networking issues.
* @throws SpotifyWebApiException The Web API returned an error further specified in this exception's root cause.
*/
@SuppressWarnings("unchecked")
public Paging
© 2015 - 2025 Weber Informatics LLC | Privacy Policy